composer.json 7.8 KB

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