composer.json 1.6 KB

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