composer.json 1.2 KB

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