composer.json 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "laravel/lumen-framework",
  3. "description": "The Laravel Lumen Framework.",
  4. "keywords": ["framework", "laravel", "lumen"],
  5. "license": "MIT",
  6. "homepage": "https://lumen.laravel.com",
  7. "support": {
  8. "issues": "https://github.com/laravel/lumen-framework/issues",
  9. "source": "https://github.com/laravel/lumen-framework"
  10. },
  11. "authors": [
  12. {
  13. "name": "Taylor Otwell",
  14. "email": "taylorotwell@gmail.com"
  15. }
  16. ],
  17. "require": {
  18. "php": "^7.1.3",
  19. "illuminate/auth": "5.6.*",
  20. "illuminate/broadcasting": "5.6.*",
  21. "illuminate/bus": "5.6.*",
  22. "illuminate/cache": "5.6.*",
  23. "illuminate/config": "5.6.*",
  24. "illuminate/container": "5.6.*",
  25. "illuminate/contracts": "5.6.*",
  26. "illuminate/database": "5.6.*",
  27. "illuminate/encryption": "5.6.*",
  28. "illuminate/events": "5.6.*",
  29. "illuminate/filesystem": "5.6.*",
  30. "illuminate/hashing": "5.6.*",
  31. "illuminate/http": "5.6.*",
  32. "illuminate/pagination": "5.6.*",
  33. "illuminate/pipeline": "5.6.*",
  34. "illuminate/queue": "5.6.*",
  35. "illuminate/support": "5.6.*",
  36. "illuminate/translation": "5.6.*",
  37. "illuminate/validation": "5.6.*",
  38. "illuminate/view": "5.6.*",
  39. "illuminate/log": "5.6.*",
  40. "dragonmantank/cron-expression": "~2.0",
  41. "nikic/fast-route": "~1.2",
  42. "symfony/http-kernel": "~4.0",
  43. "symfony/http-foundation": "~4.0"
  44. },
  45. "require-dev": {
  46. "mockery/mockery": "~1.0",
  47. "phpunit/phpunit": "~6.0"
  48. },
  49. "suggest": {
  50. "laravel/tinker": "Required to use the tinker console command (~1.0).",
  51. "vlucas/phpdotenv": "Required to use .env files (~2.2)."
  52. },
  53. "autoload": {
  54. "psr-4": {
  55. "Laravel\\Lumen\\": "src/"
  56. },
  57. "files": [
  58. "src/helpers.php"
  59. ]
  60. },
  61. "extra": {
  62. "branch-alias": {
  63. "dev-master": "5.6-dev"
  64. }
  65. },
  66. "minimum-stability": "dev",
  67. "prefer-stable": true
  68. }