forked from Bikranshu/lumen-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 915 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "zeewildie/lumen-react-boilerplate",
"version": "1.0.0",
"description": "Laravel Lumen Framework + React",
"keywords": [
"framework",
"laravel",
"lumen",
"react"
],
"license": "MIT",
"author": "Krishna Timilsina <bikranshu.t@gmail.com>",
"require": {
"php": "^7.2.5",
"laravel/lumen-framework": "7.0.*",
"tymon/jwt-auth": "1.0.0",
"dingo/api": "3.0.0",
"irazasyed/larasupport": "1.6.*",
"vlucas/phpdotenv": "^4.1"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"phpunit/phpunit": "~5.0",
"mockery/mockery": "~0.9"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"classmap": [
"tests/",
"database/"
]
},
"scripts": {
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
]
},
"minimum-stability": "dev",
"prefer-stable": true
}