composer.json 581 B

123456789101112131415161718192021222324
  1. {
  2. "name": "michel/dotenv",
  3. "description": "PHP-DotEnv is a lightweight PHP library designed to simplify the management of environment variables in your PHP applications.",
  4. "type": "library",
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "F. Michel"
  9. }
  10. ],
  11. "autoload": {
  12. "psr-4": {
  13. "Michel\\Env\\": "src",
  14. "Test\\Michel\\Env\\": "tests"
  15. }
  16. },
  17. "require": {
  18. "php": ">=7.4"
  19. },
  20. "minimum-stability": "alpha",
  21. "require-dev": {
  22. "michel/unitester": "^1.0.0"
  23. }
  24. }