-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 1.03 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
{
"name": "limingxinleo/phalcon-basic-project",
"description": "a basic version for limingxinleo/phalcon-project",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "李铭昕",
"email": "715557344@qq.com"
}
],
"require": {
"php": ">=5.6",
"ext-phalcon": "^3.0",
"limingxinleo/x-phalcon-enum": "^1.0",
"limingxinleo/x-phalcon-config-center": "^1.0",
"limingxinleo/x-swoole-rpc": "^1.1.2",
"guzzlehttp/guzzle": "^6.3",
"limingxinleo/phalcon-project-library": "^1.3.3"
},
"require-dev": {
"phpunit/phpunit": ">=5.6",
"phalcon/incubator": "^3.0",
"limingxinleo/x-phalcon-dd": "^1.0",
"guzzlehttp/guzzle": "^6.3",
"codeception/codeception": "^2.4",
"codeception/verify": "^1.0|^0.4"
},
"scripts": {
"post-create-project-cmd": [
"mkdir .phalcon",
"php -r \"copy('.env.example', '.env');\"",
"php run"
]
}
}