No Description

composer.json 4.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. {
  2. "name": "laravel/framework",
  3. "description": "The Laravel Framework.",
  4. "keywords": ["framework", "laravel"],
  5. "license": "MIT",
  6. "homepage": "http://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": "taylorotwell@gmail.com"
  15. }
  16. ],
  17. "require": {
  18. "php": ">=5.4.0",
  19. "ext-openssl": "*",
  20. "ext-mcrypt": "*",
  21. "ext-mbstring": "*",
  22. "classpreloader/classpreloader": "~1.2",
  23. "danielstjules/stringy": "~1.8",
  24. "doctrine/inflector": "~1.0",
  25. "ircmaxell/password-compat": "~1.0",
  26. "jeremeamia/superclosure": "~2.0",
  27. "league/flysystem": "~1.0",
  28. "monolog/monolog": "~1.11",
  29. "mtdowling/cron-expression": "~1.0",
  30. "nesbot/carbon": "~1.0",
  31. "psy/psysh": "0.4.*",
  32. "swiftmailer/swiftmailer": "~5.1",
  33. "symfony/console": "2.6.*",
  34. "symfony/debug": "2.6.*",
  35. "symfony/finder": "2.6.*",
  36. "symfony/http-foundation": "2.6.*",
  37. "symfony/http-kernel": "2.6.*",
  38. "symfony/process": "2.6.*",
  39. "symfony/routing": "2.6.*",
  40. "symfony/security-core": "2.6.*",
  41. "symfony/translation": "2.6.*",
  42. "symfony/var-dumper": "2.6.*",
  43. "vlucas/phpdotenv": "~1.0"
  44. },
  45. "replace": {
  46. "illuminate/auth": "self.version",
  47. "illuminate/bus": "self.version",
  48. "illuminate/cache": "self.version",
  49. "illuminate/config": "self.version",
  50. "illuminate/console": "self.version",
  51. "illuminate/container": "self.version",
  52. "illuminate/contracts": "self.version",
  53. "illuminate/cookie": "self.version",
  54. "illuminate/database": "self.version",
  55. "illuminate/encryption": "self.version",
  56. "illuminate/events": "self.version",
  57. "illuminate/exception": "self.version",
  58. "illuminate/filesystem": "self.version",
  59. "illuminate/foundation": "self.version",
  60. "illuminate/hashing": "self.version",
  61. "illuminate/http": "self.version",
  62. "illuminate/log": "self.version",
  63. "illuminate/mail": "self.version",
  64. "illuminate/pagination": "self.version",
  65. "illuminate/pipeline": "self.version",
  66. "illuminate/queue": "self.version",
  67. "illuminate/redis": "self.version",
  68. "illuminate/routing": "self.version",
  69. "illuminate/session": "self.version",
  70. "illuminate/support": "self.version",
  71. "illuminate/translation": "self.version",
  72. "illuminate/validation": "self.version",
  73. "illuminate/view": "self.version"
  74. },
  75. "require-dev": {
  76. "aws/aws-sdk-php": "~2.4",
  77. "iron-io/iron_mq": "~1.5",
  78. "pda/pheanstalk": "~3.0",
  79. "predis/predis": "~1.0",
  80. "mockery/mockery": "~0.9",
  81. "phpunit/phpunit": "~4.0"
  82. },
  83. "autoload": {
  84. "classmap": [
  85. "src/Illuminate/Queue/IlluminateQueueClosure.php"
  86. ],
  87. "files": [
  88. "src/Illuminate/Foundation/helpers.php",
  89. "src/Illuminate/Support/helpers.php"
  90. ],
  91. "psr-4": {
  92. "Illuminate\\": "src/Illuminate/"
  93. }
  94. },
  95. "extra": {
  96. "branch-alias": {
  97. "dev-master": "5.0-dev"
  98. }
  99. },
  100. "suggest": {
  101. "aws/aws-sdk-php": "Required to use the SQS queue driver (~2.4).",
  102. "doctrine/dbal": "Required to rename columns and drop SQLite columns (~2.4).",
  103. "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers (~5.0).",
  104. "iron-io/iron_mq": "Required to use the iron queue driver (~1.5).",
  105. "league/flysystem-aws-s3-v2": "Required to use the Flysystem S3 driver (~1.0).",
  106. "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (~1.0).",
  107. "pda/pheanstalk": "Required to use the beanstalk queue driver (~3.0).",
  108. "predis/predis": "Required to use the redis cache and queue drivers (~1.0)."
  109. },
  110. "minimum-stability": "dev"
  111. }