composer.json 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. {
  2. "name": "laravel/framework",
  3. "description": "The Laravel Framework.",
  4. "keywords": ["framework", "laravel"],
  5. "license": "MIT",
  6. "homepage": "https://laravel.com",
  7. "support": {
  8. "issues": "https://github.com/laravel/framework/issues",
  9. "source": "https://github.com/laravel/framework"
  10. },
  11. "authors": [
  12. {
  13. "name": "Taylor Otwell",
  14. "email": "taylor@laravel.com"
  15. }
  16. ],
  17. "require": {
  18. "php": ">=7.0",
  19. "ext-mbstring": "*",
  20. "ext-openssl": "*",
  21. "doctrine/inflector": "~1.1",
  22. "erusev/parsedown": "~1.7",
  23. "league/flysystem": "^1.0.8",
  24. "monolog/monolog": "~1.12",
  25. "mtdowling/cron-expression": "~1.0",
  26. "nesbot/carbon": "^1.24.1",
  27. "psr/container": "~1.0",
  28. "psr/simple-cache": "^1.0",
  29. "ramsey/uuid": "~3.0",
  30. "swiftmailer/swiftmailer": "~6.0",
  31. "symfony/console": "~3.3",
  32. "symfony/debug": "~3.3",
  33. "symfony/finder": "~3.3",
  34. "symfony/http-foundation": "~3.3",
  35. "symfony/http-kernel": "~3.3",
  36. "symfony/process": "~3.3",
  37. "symfony/routing": "~3.3",
  38. "symfony/var-dumper": "~3.3",
  39. "tijsverkoyen/css-to-inline-styles": "~2.2",
  40. "vlucas/phpdotenv": "~2.2"
  41. },
  42. "replace": {
  43. "illuminate/auth": "self.version",
  44. "illuminate/broadcasting": "self.version",
  45. "illuminate/bus": "self.version",
  46. "illuminate/cache": "self.version",
  47. "illuminate/config": "self.version",
  48. "illuminate/console": "self.version",
  49. "illuminate/container": "self.version",
  50. "illuminate/contracts": "self.version",
  51. "illuminate/cookie": "self.version",
  52. "illuminate/database": "self.version",
  53. "illuminate/encryption": "self.version",
  54. "illuminate/events": "self.version",
  55. "illuminate/filesystem": "self.version",
  56. "illuminate/hashing": "self.version",
  57. "illuminate/http": "self.version",
  58. "illuminate/log": "self.version",
  59. "illuminate/mail": "self.version",
  60. "illuminate/notifications": "self.version",
  61. "illuminate/pagination": "self.version",
  62. "illuminate/pipeline": "self.version",
  63. "illuminate/queue": "self.version",
  64. "illuminate/redis": "self.version",
  65. "illuminate/routing": "self.version",
  66. "illuminate/session": "self.version",
  67. "illuminate/support": "self.version",
  68. "illuminate/translation": "self.version",
  69. "illuminate/validation": "self.version",
  70. "illuminate/view": "self.version",
  71. "tightenco/collect": "<5.5.33"
  72. },
  73. "require-dev": {
  74. "aws/aws-sdk-php": "~3.0",
  75. "doctrine/dbal": "~2.5",
  76. "filp/whoops": "^2.1.4",
  77. "mockery/mockery": "~1.0",
  78. "orchestra/testbench-core": "3.5.*",
  79. "pda/pheanstalk": "~3.0",
  80. "phpunit/phpunit": "~6.0",
  81. "predis/predis": "^1.1.1",
  82. "symfony/css-selector": "~3.3",
  83. "symfony/dom-crawler": "~3.3"
  84. },
  85. "autoload": {
  86. "files": [
  87. "src/Illuminate/Foundation/helpers.php",
  88. "src/Illuminate/Support/helpers.php"
  89. ],
  90. "psr-4": {
  91. "Illuminate\\": "src/Illuminate/"
  92. }
  93. },
  94. "autoload-dev": {
  95. "files": [
  96. "tests/Database/stubs/MigrationCreatorFakeMigration.php"
  97. ],
  98. "psr-4": {
  99. "Illuminate\\Tests\\": "tests/"
  100. }
  101. },
  102. "extra": {
  103. "branch-alias": {
  104. "dev-master": "5.5-dev"
  105. }
  106. },
  107. "suggest": {
  108. "ext-pcntl": "Required to use all features of the queue worker.",
  109. "ext-posix": "Required to use all features of the queue worker.",
  110. "aws/aws-sdk-php": "Required to use the SQS queue driver and SES mail driver (~3.0).",
  111. "doctrine/dbal": "Required to rename columns and drop SQLite columns (~2.5).",
  112. "fzaninotto/faker": "Required to use the eloquent factory builder (~1.4).",
  113. "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers and the ping methods on schedules (~6.0).",
  114. "laravel/tinker": "Required to use the tinker console command (~1.0).",
  115. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (~1.0).",
  116. "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (~1.0).",
  117. "league/flysystem-cached-adapter": "Required to use Flysystem caching (~1.0).",
  118. "nexmo/client": "Required to use the Nexmo transport (~1.0).",
  119. "pda/pheanstalk": "Required to use the beanstalk queue driver (~3.0).",
  120. "predis/predis": "Required to use the redis cache and queue drivers (~1.0).",
  121. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (~3.0).",
  122. "symfony/css-selector": "Required to use some of the crawler integration testing tools (~3.3).",
  123. "symfony/dom-crawler": "Required to use most of the crawler integration testing tools (~3.3).",
  124. "symfony/psr-http-message-bridge": "Required to psr7 bridging features (~1.0)."
  125. },
  126. "config": {
  127. "sort-packages": true
  128. },
  129. "minimum-stability": "dev",
  130. "prefer-stable": true
  131. }