composer.json 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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.1.3",
  18. "ext-mbstring": "*",
  19. "doctrine/inflector": "~1.1",
  20. "illuminate/contracts": "5.6.*",
  21. "nesbot/carbon": "^1.24.1"
  22. },
  23. "conflict": {
  24. "tightenco/collect": "<5.5.33"
  25. },
  26. "autoload": {
  27. "psr-4": {
  28. "Illuminate\\Support\\": ""
  29. },
  30. "files": [
  31. "helpers.php"
  32. ]
  33. },
  34. "extra": {
  35. "branch-alias": {
  36. "dev-master": "5.6-dev"
  37. }
  38. },
  39. "suggest": {
  40. "illuminate/filesystem": "Required to use the composer class (5.6.*).",
  41. "ramsey/uuid": "Required to use Str::uuid() (^3.7).",
  42. "symfony/process": "Required to use the composer class (~4.0).",
  43. "symfony/var-dumper": "Required to use the dd function (~4.0)."
  44. },
  45. "config": {
  46. "sort-packages": true
  47. },
  48. "minimum-stability": "dev"
  49. }