-
Notifications
You must be signed in to change notification settings - Fork 133
/
composer.json
38 lines (38 loc) · 1.16 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
{
"name": "tigerb/easy-php",
"description": "A Faster Lightweight Full-Stack PHP Framework",
"version": "0.8.6",
"type": "framework",
"homepage": "http://easy-php.tigerb.cn/",
"license": "MIT",
"minimum-stability": "stable",
"authors": [{
"name": "tigerb",
"email": "[email protected]"
}],
"require-dev": {
"squizlabs/php_codesniffer": "*",
"phpunit/phpunit": "^6.0"
},
"require": {
"easy-framework/easy-log": "^0.1.0"
},
"scripts": {
"post-install-cmd": [
"composer dump-autoload --optimize"
],
"post-root-project-cmd": [
"cp .env.example .env",
"chmod -R 777 runtime",
"git init && git add -A && git commit -m 'feat(all): project init commit'",
"cp -r ./.git-hooks/* ./.git/hooks && chmod +x ./.git/hooks/pre-commit && chmod +x ./.git/hooks/commit-msg",
"rm ./.travis.yml && rm ./.varci.yml",
"composer install",
"composer dump-autoload --optimize"
],
"rebuild": [
"cp .env.example .env",
"rm -rf runtime/*"
]
}
}