composer.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "michel/michel-core",
  3. "description": "The Michel Framework Core provides the essential building blocks for the Michel Framework. It's a lightweight, versatile, and modern PHP framework designed to streamline web development and simplify common tasks.",
  4. "type": "package",
  5. "license": "MPL-2.0",
  6. "authors": [
  7. {
  8. "name": "Michel.F"
  9. }
  10. ],
  11. "autoload": {
  12. "psr-4": {
  13. "\\Michel\\Framework\\Core\\": "src",
  14. "Test\\Michel\\Framework\\Core\\": "tests"
  15. },
  16. "files": [
  17. "functions/helpers.php",
  18. "functions/helpers_file.php",
  19. "functions/helpers_string.php",
  20. "functions/helpers_array.php",
  21. "functions/helpers_date.php"
  22. ]
  23. },
  24. "require": {
  25. "php": ">=7.4",
  26. "ext-json": "*",
  27. "ext-mbstring": "*",
  28. "psr/container": "^1.0|^2.0",
  29. "psr/http-message": "~1.0|^2.0",
  30. "psr/http-server-handler": "^1.0",
  31. "psr/http-server-middleware": "^1.0",
  32. "psr/event-dispatcher": "^1.0",
  33. "psr/http-factory": "^1.0",
  34. "psr/log": "^1.1|^2.0",
  35. "michel/dotenv": "^1.0",
  36. "michel/router": "^1.0",
  37. "michel/options-resolver": "^1.0",
  38. "michel/console": "^1.0",
  39. "michel/vardumper": "^1.0",
  40. "michel/psr14-event-dispatcher": "^1.0",
  41. "michel/pure-plate": "^1.0",
  42. "michel/michel-package-starter": "^1.0"
  43. },
  44. "require-dev": {
  45. "michel/unitester": "^1.0.0"
  46. }
  47. }