forked from mloberg/Minimalist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.23 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
{
"name": "mlo/minimalist",
"description": "Minimalist PHP framework",
"license": "MIT",
"authors": [
{
"name": "Matthew Loberg",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0",
"equip/dispatch": "^0.5.0",
"http-interop/http-middleware": "^0.5.0",
"illuminate/support": "^5.5",
"middlewares/fast-route": "^0.8.0",
"middlewares/request-handler": "^0.3.0",
"middlewares/utils": "^0.12.0",
"middlewares/whoops": "^0.5.0",
"symfony/config": "^3.3",
"symfony/dependency-injection": "^3.3",
"symfony/dotenv": "^3.3",
"symfony/yaml": "^3.3",
"zendframework/zend-diactoros": "^1.6"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.8",
"symfony/var-dumper": "^3.3"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"scripts": {
"post-install-cmd": [
"@php -r \"file_exists('.env') || copy('.env.dist', '.env');\""
],
"cs-fix": "php-cs-fixer fix"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
}
}