-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.49 KB
/
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
45
46
47
48
49
50
51
52
{
"name": "etiennemarais/lumen-starter",
"description": "Lumen starter app is a bootstrap of a micro service api or to scale as a backend for any client.",
"keywords": ["api", "starter", "lumen", "microservice", "backend", "bootstrap"],
"license": "MIT",
"type": "project",
"require": {
"php": ">=5.5.9",
"laravel/lumen-framework": "5.2.*",
"vlucas/phpdotenv": "~2.2",
"barryvdh/laravel-cors": "0.7.x",
"erusev/parsedown": "^1.6",
"maknz/slack": "~1.7",
"spatie/laravel-backup": "~3.1",
"illuminate/log": "~5.2",
"league/flysystem-aws-s3-v3": "^1.0"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"phpunit/phpunit": "~4.0",
"phpspec/phpspec": "~2.1",
"illuminate/support": "~5.2",
"symfony/var-dumper": "~3.0",
"mockery/mockery": "~0.9"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"App\\": "app/",
"Starter\\": "src/Starter",
"Infrastructure\\": "src/Infrastructure/"
},
"files": [
"app/Support/helpers.php"
]
},
"autoload-dev": {
"classmap": [
"tests/",
"database/"
]
},
"scripts": {
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"php artisan key:generate"
]
}
}