-
Notifications
You must be signed in to change notification settings - Fork 257
/
composer.json
42 lines (42 loc) · 1.25 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
{
"name": "zblogcn/zblogphp",
"description": "Z-BlogPHP是由RainbowSoft Studio团队开发的博客程序,基于高效的PHP环境,体积小,速度快,支持比较大的数据量。",
"license": "MIT",
"authors": [{
"name": "zx.asd",
"email": "[email protected]"
}, {
"name": "zsx",
"email": "[email protected]"
}, {
"name": "involvements",
"email": "[email protected]"
}, {
"name": "movni",
"email": "[email protected]"
}],
"require": {
"php": ">=5.2"
},
"require-dev": {
"phpunit/phpunit": "^9.3.3",
"phpcompatibility/php-compatibility": "9.3.5",
"squizlabs/php_codesniffer": "3.*",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"dms/phpunit-arraysubset-asserts": "^0.2.1"
},
"repositories": {
"packagist": {
"type": "composer",
"url": "https://mirrors.cloud.tencent.com/composer/"
}
},
"scripts": {
"test": "sh ./vendor/bin/phpunit ./tests/phpunit"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}