composer.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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": "^12.0",
  19. "illuminate/reflection": "^12.0",
  20. "psr/container": "^1.1.1|^2.0.1",
  21. "symfony/polyfill-php84": "^1.33",
  22. "symfony/polyfill-php85": "^1.33"
  23. },
  24. "suggest": {
  25. "illuminate/auth": "Required to use the Auth attribute",
  26. "illuminate/cache": "Required to use the Cache attribute",
  27. "illuminate/config": "Required to use the Config attribute",
  28. "illuminate/database": "Required to use the DB attribute",
  29. "illuminate/filesystem": "Required to use the Storage attribute",
  30. "illuminate/log": "Required to use the Log or Context attributes"
  31. },
  32. "provide": {
  33. "psr/container-implementation": "1.1|2.0"
  34. },
  35. "autoload": {
  36. "psr-4": {
  37. "Illuminate\\Container\\": ""
  38. }
  39. },
  40. "extra": {
  41. "branch-alias": {
  42. "dev-master": "12.x-dev"
  43. }
  44. },
  45. "config": {
  46. "sort-packages": true
  47. },
  48. "minimum-stability": "dev"
  49. }