composer.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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": "^11.0",
  23. "illuminate/conditionable": "^11.0",
  24. "illuminate/contracts": "^11.0",
  25. "illuminate/macroable": "^11.0",
  26. "nesbot/carbon": "^2.72.2|^3.0",
  27. "voku/portable-ascii": "^2.0"
  28. },
  29. "conflict": {
  30. "tightenco/collect": "<5.5.33"
  31. },
  32. "replace": {
  33. "spatie/once": "*"
  34. },
  35. "autoload": {
  36. "psr-4": {
  37. "Illuminate\\Support\\": ""
  38. },
  39. "files": [
  40. "helpers.php"
  41. ]
  42. },
  43. "extra": {
  44. "branch-alias": {
  45. "dev-master": "11.x-dev"
  46. }
  47. },
  48. "suggest": {
  49. "illuminate/filesystem": "Required to use the composer class (^11.0).",
  50. "league/commonmark": "Required to use Str::markdown() and Stringable::markdown() (^2.0.2).",
  51. "ramsey/uuid": "Required to use Str::uuid() (^4.7).",
  52. "symfony/process": "Required to use the composer class (^7.0).",
  53. "symfony/uid": "Required to use Str::ulid() (^7.0).",
  54. "symfony/var-dumper": "Required to use the dd function (^7.0).",
  55. "vlucas/phpdotenv": "Required to use the Env class and env helper (^5.4.1)."
  56. },
  57. "config": {
  58. "sort-packages": true
  59. },
  60. "minimum-stability": "dev"
  61. }