composer.json 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "illuminate/support",
  3. "description": "The Illuminate Support 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. "ext-ctype": "*",
  19. "ext-filter": "*",
  20. "ext-mbstring": "*",
  21. "doctrine/inflector": "^2.0",
  22. "illuminate/collections": "^12.0",
  23. "illuminate/conditionable": "^12.0",
  24. "illuminate/contracts": "^12.0",
  25. "illuminate/macroable": "^12.0",
  26. "illuminate/reflection": "^12.0",
  27. "nesbot/carbon": "^3.8.4",
  28. "symfony/polyfill-php83": "^1.33",
  29. "symfony/polyfill-php85": "^1.33",
  30. "voku/portable-ascii": "^2.0.2"
  31. },
  32. "conflict": {
  33. "tightenco/collect": "<5.5.33"
  34. },
  35. "replace": {
  36. "spatie/once": "*"
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Illuminate\\Support\\": ""
  41. },
  42. "files": [
  43. "functions.php",
  44. "helpers.php"
  45. ]
  46. },
  47. "extra": {
  48. "branch-alias": {
  49. "dev-master": "12.x-dev"
  50. }
  51. },
  52. "suggest": {
  53. "illuminate/filesystem": "Required to use the Composer class (^12.0).",
  54. "laravel/serializable-closure": "Required to use the once function (^1.3|^2.0).",
  55. "league/commonmark": "Required to use Str::markdown() and Stringable::markdown() (^2.7).",
  56. "league/uri": "Required to use the Uri class (^7.5.1).",
  57. "ramsey/uuid": "Required to use Str::uuid() (^4.7).",
  58. "symfony/process": "Required to use the Composer class (^7.2).",
  59. "symfony/uid": "Required to use Str::ulid() (^7.2).",
  60. "symfony/var-dumper": "Required to use the dd function (^7.2).",
  61. "vlucas/phpdotenv": "Required to use the Env class and env helper (^5.6.1)."
  62. },
  63. "config": {
  64. "sort-packages": true
  65. },
  66. "minimum-stability": "dev"
  67. }