composer.json 761 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "perfectmak/paystack-php",
  3. "type": "library",
  4. "description": "Paystack Library for PHP",
  5. "keywords": ["paystack","payment"],
  6. "homepage": "https://github.com/Seldaek/monolog",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Perfect Makanju",
  11. "email": "damiperfect@gmail.com",
  12. "homepage": "http://about.me/perfectmak",
  13. "role": "Developer"
  14. }
  15. ],
  16. "require": {
  17. "php": ">=5.5",
  18. "nategood/httpful": "*"
  19. },
  20. "require-dev": {
  21. "phpunit/phpunit": "~4.0"
  22. },
  23. "autoload": {
  24. "psr-4": {
  25. "": "lib",
  26. "PaystackTest\\": "test"
  27. },
  28. "classmap": [
  29. "tests/TestCase.php"
  30. ]
  31. }
  32. }