composer.json 660 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "roave/signature",
  3. "description": "Sign and verify stuff",
  4. "license": "MIT",
  5. "require": {
  6. "php": "^7.3 || ^7.4"
  7. },
  8. "require-dev": {
  9. "phpunit/phpunit": "^9.3",
  10. "infection/infection": "^0.17.5",
  11. "doctrine/coding-standard": "^8.1",
  12. "vimeo/psalm": "^3.16"
  13. },
  14. "autoload": {
  15. "psr-4": {
  16. "Roave\\Signature\\": "src"
  17. }
  18. },
  19. "autoload-dev": {
  20. "psr-4": {
  21. "Roave\\SignatureTest\\": "test/unit/src",
  22. "Roave\\SignatureTestFixture\\": "test/fixture"
  23. }
  24. },
  25. "minimum-stability": "dev",
  26. "prefer-stable": true
  27. }