composer.json 1.4 KB

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