composer.json 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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.2.5",
  19. "ext-json": "*",
  20. "ext-mbstring": "*",
  21. "ext-openssl": "*",
  22. "doctrine/inflector": "^1.1",
  23. "dragonmantank/cron-expression": "^2.0",
  24. "egulias/email-validator": "^2.1.10",
  25. "league/commonmark": "^1.3",
  26. "league/flysystem": "^1.0.8",
  27. "monolog/monolog": "^2.0",
  28. "nesbot/carbon": "^2.17",
  29. "opis/closure": "^3.1",
  30. "psr/container": "^1.0",
  31. "psr/simple-cache": "^1.0",
  32. "ramsey/uuid": "^3.7",
  33. "swiftmailer/swiftmailer": "^6.0",
  34. "symfony/console": "^5.0",
  35. "symfony/error-handler": "^5.0",
  36. "symfony/finder": "^5.0",
  37. "symfony/http-foundation": "^5.0",
  38. "symfony/http-kernel": "^5.0",
  39. "symfony/mime": "^5.0",
  40. "symfony/process": "^5.0",
  41. "symfony/routing": "^5.0",
  42. "symfony/var-dumper": "^5.0",
  43. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  44. "vlucas/phpdotenv": "^4.0",
  45. "voku/portable-ascii": "^1.4.8"
  46. },
  47. "replace": {
  48. "illuminate/auth": "self.version",
  49. "illuminate/broadcasting": "self.version",
  50. "illuminate/bus": "self.version",
  51. "illuminate/cache": "self.version",
  52. "illuminate/config": "self.version",
  53. "illuminate/console": "self.version",
  54. "illuminate/container": "self.version",
  55. "illuminate/contracts": "self.version",
  56. "illuminate/cookie": "self.version",
  57. "illuminate/database": "self.version",
  58. "illuminate/encryption": "self.version",
  59. "illuminate/events": "self.version",
  60. "illuminate/filesystem": "self.version",
  61. "illuminate/hashing": "self.version",
  62. "illuminate/http": "self.version",
  63. "illuminate/log": "self.version",
  64. "illuminate/mail": "self.version",
  65. "illuminate/notifications": "self.version",
  66. "illuminate/pagination": "self.version",
  67. "illuminate/pipeline": "self.version",
  68. "illuminate/queue": "self.version",
  69. "illuminate/redis": "self.version",
  70. "illuminate/routing": "self.version",
  71. "illuminate/session": "self.version",
  72. "illuminate/support": "self.version",
  73. "illuminate/testing": "self.version",
  74. "illuminate/translation": "self.version",
  75. "illuminate/validation": "self.version",
  76. "illuminate/view": "self.version"
  77. },
  78. "require-dev": {
  79. "aws/aws-sdk-php": "^3.0",
  80. "doctrine/dbal": "^2.6",
  81. "filp/whoops": "^2.4",
  82. "guzzlehttp/guzzle": "^6.3.1|^7.0",
  83. "league/flysystem-cached-adapter": "^1.0",
  84. "mockery/mockery": "^1.3.1",
  85. "moontoast/math": "^1.1",
  86. "orchestra/testbench-core": "^5.0",
  87. "pda/pheanstalk": "^4.0",
  88. "phpunit/phpunit": "^8.4|^9.0",
  89. "predis/predis": "^1.1.1",
  90. "symfony/cache": "^5.0"
  91. },
  92. "conflict": {
  93. "tightenco/collect": "<5.5.33"
  94. },
  95. "autoload": {
  96. "files": [
  97. "src/Illuminate/Foundation/helpers.php",
  98. "src/Illuminate/Support/helpers.php"
  99. ],
  100. "psr-4": {
  101. "Illuminate\\": "src/Illuminate/"
  102. }
  103. },
  104. "autoload-dev": {
  105. "files": [
  106. "tests/Database/stubs/MigrationCreatorFakeMigration.php"
  107. ],
  108. "psr-4": {
  109. "Illuminate\\Tests\\": "tests/"
  110. }
  111. },
  112. "extra": {
  113. "branch-alias": {
  114. "dev-master": "7.x-dev"
  115. }
  116. },
  117. "suggest": {
  118. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  119. "ext-memcached": "Required to use the memcache cache driver.",
  120. "ext-pcntl": "Required to use all features of the queue worker.",
  121. "ext-posix": "Required to use all features of the queue worker.",
  122. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  123. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.0).",
  124. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  125. "filp/whoops": "Required for friendly error pages in development (^2.4).",
  126. "fzaninotto/faker": "Required to use the eloquent factory builder (^1.9.1).",
  127. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0).",
  128. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  129. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  130. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  131. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  132. "mockery/mockery": "Required to use mocking (^1.3.1).",
  133. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  134. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  135. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  136. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.0).",
  137. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  138. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  139. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  140. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  141. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  142. },
  143. "config": {
  144. "sort-packages": true
  145. },
  146. "minimum-stability": "dev",
  147. "prefer-stable": true
  148. }