composer.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "illuminate/collections",
  3. "description": "The Illuminate Collections 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/conditionable": "^12.0",
  19. "illuminate/contracts": "^12.0",
  20. "illuminate/macroable": "^12.0",
  21. "symfony/polyfill-php84": "^1.33",
  22. "symfony/polyfill-php85": "^1.33"
  23. },
  24. "autoload": {
  25. "psr-4": {
  26. "Illuminate\\Support\\": ""
  27. },
  28. "files": [
  29. "functions.php",
  30. "helpers.php"
  31. ]
  32. },
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "12.x-dev"
  36. }
  37. },
  38. "suggest": {
  39. "illuminate/http": "Required to convert collections to API resources (^12.0).",
  40. "symfony/var-dumper": "Required to use the dump method (^7.2)."
  41. },
  42. "config": {
  43. "sort-packages": true
  44. },
  45. "minimum-stability": "dev"
  46. }