暫無描述

composer.json 4.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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": ">=5.6.4",
  19. "ext-mbstring": "*",
  20. "ext-openssl": "*",
  21. "doctrine/inflector": "~1.0",
  22. "erusev/parsedown": "~1.6",
  23. "league/flysystem": "~1.0",
  24. "monolog/monolog": "~1.11",
  25. "mtdowling/cron-expression": "~1.0",
  26. "nesbot/carbon": "~1.20",
  27. "paragonie/random_compat": "~1.4|~2.0",
  28. "ramsey/uuid": "~3.0",
  29. "swiftmailer/swiftmailer": "~5.4",
  30. "symfony/console": "~3.2",
  31. "symfony/debug": "~3.2",
  32. "symfony/finder": "~3.2",
  33. "symfony/http-foundation": "~3.2",
  34. "symfony/http-kernel": "~3.2",
  35. "symfony/process": "~3.2",
  36. "symfony/routing": "~3.2",
  37. "symfony/var-dumper": "~3.2",
  38. "tijsverkoyen/css-to-inline-styles": "~2.2",
  39. "vlucas/phpdotenv": "~2.2"
  40. },
  41. "replace": {
  42. "illuminate/auth": "self.version",
  43. "illuminate/broadcasting": "self.version",
  44. "illuminate/bus": "self.version",
  45. "illuminate/cache": "self.version",
  46. "illuminate/config": "self.version",
  47. "illuminate/console": "self.version",
  48. "illuminate/container": "self.version",
  49. "illuminate/contracts": "self.version",
  50. "illuminate/cookie": "self.version",
  51. "illuminate/database": "self.version",
  52. "illuminate/encryption": "self.version",
  53. "illuminate/events": "self.version",
  54. "illuminate/exception": "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": "self.version"
  72. },
  73. "require-dev": {
  74. "aws/aws-sdk-php": "~3.0",
  75. "doctrine/dbal": "~2.5",
  76. "mockery/mockery": "~0.9.4",
  77. "pda/pheanstalk": "~3.0",
  78. "phpunit/phpunit": "~5.7",
  79. "predis/predis": "~1.0",
  80. "symfony/css-selector": "~3.2",
  81. "symfony/dom-crawler": "~3.2"
  82. },
  83. "autoload": {
  84. "files": [
  85. "src/Illuminate/Foundation/helpers.php",
  86. "src/Illuminate/Support/helpers.php"
  87. ],
  88. "psr-4": {
  89. "Illuminate\\": "src/Illuminate/"
  90. }
  91. },
  92. "autoload-dev": {
  93. "files": [
  94. "tests/Database/stubs/MigrationCreatorFakeMigration.php"
  95. ],
  96. "psr-4": {
  97. "Illuminate\\Tests\\": "tests/"
  98. }
  99. },
  100. "extra": {
  101. "branch-alias": {
  102. "dev-master": "5.4-dev"
  103. }
  104. },
  105. "suggest": {
  106. "aws/aws-sdk-php": "Required to use the SQS queue driver and SES mail driver (~3.0).",
  107. "doctrine/dbal": "Required to rename columns and drop SQLite columns (~2.5).",
  108. "fzaninotto/faker": "Required to use the eloquent factory builder (~1.4).",
  109. "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers and the ping methods on schedules (~6.0).",
  110. "laravel/tinker": "Required to use the tinker console command (~1.0).",
  111. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (~1.0).",
  112. "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (~1.0).",
  113. "nexmo/client": "Required to use the Nexmo transport (~1.0).",
  114. "pda/pheanstalk": "Required to use the beanstalk queue driver (~3.0).",
  115. "predis/predis": "Required to use the redis cache and queue drivers (~1.0).",
  116. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (~2.0).",
  117. "symfony/css-selector": "Required to use some of the crawler integration testing tools (~3.2).",
  118. "symfony/dom-crawler": "Required to use most of the crawler integration testing tools (~3.2).",
  119. "symfony/psr-http-message-bridge": "Required to psr7 bridging features (0.2.*)."
  120. },
  121. "config": {
  122. "sort-packages": true
  123. },
  124. "minimum-stability": "dev",
  125. "prefer-stable": true
  126. }