composer.json 904 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "illuminate/container",
  3. "description": "The Illuminate Container package.",
  4. "license": "MIT",
  5. "homepage": "https://laravel.com",
  6. "support": {
  7. "issues": "https://github.com/laravel/framework/issues",
  8. "source": "https://github.com/laravel/framework"
  9. },
  10. "authors": [
  11. {
  12. "name": "Taylor Otwell",
  13. "email": "taylor@laravel.com"
  14. }
  15. ],
  16. "require": {
  17. "php": "^8.2",
  18. "illuminate/contracts": "^11.0",
  19. "psr/container": "^1.1.1|^2.0.1"
  20. },
  21. "provide": {
  22. "psr/container-implementation": "1.1|2.0"
  23. },
  24. "autoload": {
  25. "psr-4": {
  26. "Illuminate\\Container\\": ""
  27. }
  28. },
  29. "extra": {
  30. "branch-alias": {
  31. "dev-master": "11.x-dev"
  32. }
  33. },
  34. "config": {
  35. "sort-packages": true
  36. },
  37. "minimum-stability": "dev"
  38. }