composer.json 907 B

123456789101112131415161718192021222324252627282930313233343536373839
  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. },
  11. "require-dev": {
  12. "phpunit/phpunit": "^4.7"
  13. },
  14. "license": "MIT",
  15. "authors": [
  16. {
  17. "name": "Richard Knight",
  18. "email": "rich@apewavwe.com"
  19. }
  20. ],
  21. "minimum-stability": "dev",
  22. "prefer-stable": true,
  23. "autoload": {
  24. "psr-4": {
  25. "Bolt\\Extension\\Ginger\\Squarepay\\": "src"
  26. }
  27. },
  28. "autoload-dev": {
  29. "psr-4": {
  30. "Bolt\\Extension\\Ginger\\Squarepay\\Tests\\": "tests",
  31. "Bolt\\Tests\\": "vendor/bolt/bolt/tests/phpunit/unit/"
  32. }
  33. },
  34. "extra": {
  35. "bolt-assets": "web",
  36. "bolt-class": "Bolt\\Extension\\Ginger\\Squarepay\\SquarepayExtension"
  37. }
  38. }