composer.json 2.1 KB

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