composer.json 948 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "ginger/squarepay",
  3. "description": "Square Payments Bolt Extension",
  4. "type": "bolt-extension",
  5. "keywords": [
  6. "test"
  7. ],
  8. "require": {
  9. "bolt/bolt": "^3.6",
  10. "square/connect": "^2.20180918"
  11. },
  12. "require-dev": {
  13. "phpunit/phpunit": "^4.7"
  14. },
  15. "license": "MIT",
  16. "authors": [
  17. {
  18. "name": "Richard Knight",
  19. "email": "rich@apewavwe.com"
  20. }
  21. ],
  22. "minimum-stability": "dev",
  23. "prefer-stable": true,
  24. "autoload": {
  25. "psr-4": {
  26. "Bolt\\Extension\\Ginger\\Squarepay\\": "src"
  27. }
  28. },
  29. "autoload-dev": {
  30. "psr-4": {
  31. "Bolt\\Extension\\Ginger\\Squarepay\\Tests\\": "tests",
  32. "Bolt\\Tests\\": "vendor/bolt/bolt/tests/phpunit/unit/"
  33. }
  34. },
  35. "extra": {
  36. "bolt-assets": "web",
  37. "bolt-class": "Bolt\\Extension\\Ginger\\Squarepay\\SquarepayExtension"
  38. }
  39. }