composer.json 801 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "braintree/braintree_php",
  3. "type": "library",
  4. "description": "Braintree PHP Client Library",
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "Braintree",
  9. "homepage": "https://www.braintreepayments.com"
  10. }
  11. ],
  12. "require": {
  13. "php": ">=7.2.0",
  14. "ext-curl": "*",
  15. "ext-dom": "*",
  16. "ext-hash": "*",
  17. "ext-openssl": "*",
  18. "ext-xmlwriter": "*"
  19. },
  20. "require-dev": {
  21. "phpunit/phpunit": "^7.5"
  22. },
  23. "autoload": {
  24. "psr-0": {
  25. "Braintree": "lib/"
  26. },
  27. "psr-4": {
  28. "Braintree\\": "lib/Braintree"
  29. }
  30. },
  31. "autoload-dev": {
  32. "psr-4": {
  33. "Test\\": "tests"
  34. }
  35. }
  36. }