-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·38 lines (38 loc) · 995 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
{
"name": "mellivora/mellivora",
"type": "library",
"description": "Mellivora PHP Framework",
"keywords": ["framework", "micro", "slim", "laravel", "symfony", "mellivora", "claw"],
"homepage": "https://github.com/zhouyl/mellivora",
"license": "MIT",
"authors": [
{
"name": "zhouyl",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6.0",
"slim/slim": "^3.8",
"doctrine/inflector": "^1.1",
"symfony/cache": "~3.3",
"symfony/console": "~3.3",
"symfony/debug": "~3.3",
"symfony/http-foundation": "~3.3",
"nesbot/carbon": "^2.35"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "~2"
},
"autoload": {
"psr-4": {
"Mellivora\\": "Mellivora"
},
"files": [
"helpers.php"
]
},
"scripts": {
"phpcs": "./vendor/bin/php-cs-fixer fix -v --diff --dry-run;"
}
}