composer.json 846 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "stripe/stripe-php",
  3. "description": "Stripe PHP Library",
  4. "keywords": [
  5. "stripe",
  6. "payment processing",
  7. "api"
  8. ],
  9. "homepage": "https://stripe.com/",
  10. "license": "MIT",
  11. "authors": [
  12. {
  13. "name": "Stripe and contributors",
  14. "homepage": "https://github.com/stripe/stripe-php/contributors"
  15. }
  16. ],
  17. "require": {
  18. "php": ">=5.6.0",
  19. "ext-curl": "*",
  20. "ext-json": "*",
  21. "ext-mbstring": "*"
  22. },
  23. "require-dev": {
  24. "phpunit/phpunit": "^5.7 || ^9.0",
  25. "friendsofphp/php-cs-fixer": "3.5.0",
  26. "phpstan/phpstan": "^1.2"
  27. },
  28. "autoload": {
  29. "psr-4": {
  30. "Stripe\\": "lib/"
  31. }
  32. },
  33. "autoload-dev": {
  34. "psr-4": {
  35. "Stripe\\": [
  36. "tests/",
  37. "tests/Stripe/"
  38. ]
  39. }
  40. },
  41. "extra": {
  42. "branch-alias": {
  43. "dev-master": "2.0-dev"
  44. }
  45. }
  46. }