composer.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "name": "omnipay/common",
  3. "type": "library",
  4. "description": "Common components for Omnipay payment processing library",
  5. "keywords": [
  6. "gateway",
  7. "merchant",
  8. "omnipay",
  9. "pay",
  10. "payment",
  11. "purchase"
  12. ],
  13. "homepage": "https://github.com/thephpleague/omnipay-common",
  14. "license": "MIT",
  15. "authors": [
  16. {
  17. "name": "Adrian Macneil",
  18. "email": "adrian@adrianmacneil.com"
  19. },
  20. {
  21. "name": "Barry vd. Heuvel",
  22. "email": "barryvdh@gmail.com"
  23. },
  24. {
  25. "name": "Jason Judge",
  26. "email": "jason.judge@consil.co.uk"
  27. },
  28. {
  29. "name": "Del"
  30. },
  31. {
  32. "name": "Omnipay Contributors",
  33. "homepage": "https://github.com/thephpleague/omnipay-common/contributors"
  34. }
  35. ],
  36. "autoload": {
  37. "psr-4": { "Omnipay\\Common\\" : "src/Common" },
  38. "classmap": ["src/Omnipay.php"]
  39. },
  40. "autoload-dev": {
  41. "psr-4": { "Omnipay\\Common\\" : "tests/Common" },
  42. "classmap": ["tests/OmnipayTest.php"]
  43. },
  44. "require": {
  45. "php": "^7.2|^8",
  46. "php-http/client-implementation": "^1",
  47. "php-http/message": "^1.5",
  48. "php-http/discovery": "^1.14",
  49. "symfony/http-foundation": "^2.1|^3|^4|^5",
  50. "moneyphp/money": "^3.1"
  51. },
  52. "require-dev": {
  53. "omnipay/tests": "^4.1",
  54. "php-http/mock-client": "^1",
  55. "php-http/guzzle7-adapter": "^1",
  56. "squizlabs/php_codesniffer": "^3.5"
  57. },
  58. "extra": {
  59. "branch-alias": {
  60. "dev-master": "3.1.x-dev"
  61. }
  62. },
  63. "suggest": {
  64. "league/omnipay": "The default Omnipay package provides a default HTTP Adapter."
  65. },
  66. "scripts": {
  67. "test": "phpunit",
  68. "check-style": "phpcs -p --standard=PSR2 src/",
  69. "fix-style": "phpcbf -p --standard=PSR2 src/"
  70. },
  71. "minimum-stability": "dev",
  72. "prefer-stable": true
  73. }