composer.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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.1",
  18. "ext-ctype": "*",
  19. "ext-filter": "*",
  20. "ext-mbstring": "*",
  21. "doctrine/inflector": "^2.0",
  22. "illuminate/collections": "^10.0",
  23. "illuminate/conditionable": "^10.0",
  24. "illuminate/contracts": "^10.0",
  25. "illuminate/macroable": "^10.0",
  26. "nesbot/carbon": "^2.67",
  27. "voku/portable-ascii": "^2.0"
  28. },
  29. "conflict": {
  30. "tightenco/collect": "<5.5.33"
  31. },
  32. "autoload": {
  33. "psr-4": {
  34. "Illuminate\\Support\\": ""
  35. },
  36. "files": [
  37. "helpers.php"
  38. ]
  39. },
  40. "extra": {
  41. "branch-alias": {
  42. "dev-master": "10.x-dev"
  43. }
  44. },
  45. "suggest": {
  46. "illuminate/filesystem": "Required to use the composer class (^10.0).",
  47. "league/commonmark": "Required to use Str::markdown() and Stringable::markdown() (^2.6).",
  48. "ramsey/uuid": "Required to use Str::uuid() (^4.7).",
  49. "symfony/process": "Required to use the composer class (^6.2).",
  50. "symfony/uid": "Required to use Str::ulid() (^6.2).",
  51. "symfony/var-dumper": "Required to use the dd function (^6.2).",
  52. "vlucas/phpdotenv": "Required to use the Env class and env helper (^5.4.1)."
  53. },
  54. "config": {
  55. "sort-packages": true
  56. },
  57. "minimum-stability": "dev"
  58. }