composer.json 406 B

1234567891011121314151617181920
  1. {
  2. "name": "michel/michel-package-starter",
  3. "description": "The core interface required for creating and integrating packages into the Michel framework.",
  4. "type": "library",
  5. "require": {
  6. "php": ">=7.4",
  7. "psr/container": "^1.0|^2.0"
  8. },
  9. "license": "MIT",
  10. "authors": [
  11. {
  12. "name": "F. Michel"
  13. }
  14. ],
  15. "autoload": {
  16. "psr-4": {
  17. "Michel\\Package\\": "src"
  18. }
  19. }
  20. }