2
0

composer.json 767 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "michel/michel-auth",
  3. "description": "A PSR-15 compliant authentication library providing form and token-based authentication handlers.",
  4. "type": "library",
  5. "require": {
  6. "php": ">=7.4",
  7. "michel/michel-package-starter": "^1.0",
  8. "michel/options-resolver": "^1.0",
  9. "michel/session": "^1.0",
  10. "michel/console": "^1.0",
  11. "psr/http-message": "~1.0|^2.0",
  12. "psr/http-server-middleware": "^1.0",
  13. "psr/http-factory": "^1.0",
  14. "psr/log": "^1.1|^2.0",
  15. "ext-json": "*"
  16. },
  17. "license": "MPL-2.0",
  18. "authors": [
  19. {
  20. "name": "F. Michel"
  21. }
  22. ],
  23. "autoload": {
  24. "psr-4": {
  25. "Michel\\Auth\\": "src",
  26. "Test\\Michel\\Auth\\": "tests"
  27. }
  28. },
  29. "require-dev": {
  30. "michel/unitester": "^1.0.0"
  31. }
  32. }