composer.json 7.0 KB

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