2
0

composer.json 560 B

123456789101112131415161718192021222324
  1. {
  2. "name": "michel/session",
  3. "description": "PHP Session is a PHP library that optimizes session management, utilizing PHP's native session handling mechanisms for enhanced security and efficiency.",
  4. "type": "library",
  5. "require": {
  6. "php": ">=7.4",
  7. "michel/michel-package-starter": "^1.0"
  8. },
  9. "license": "MIT",
  10. "authors": [
  11. {
  12. "name": "Michel.F"
  13. }
  14. ],
  15. "autoload": {
  16. "psr-4": {
  17. "Michel\\Session\\": "src",
  18. "Test\\Michel\\Session\\": "tests"
  19. }
  20. },
  21. "require-dev": {
  22. "michel/unitester": "^1.0.0"
  23. }
  24. }