-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
39 lines (39 loc) · 935 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
39
{
"name": "her-cat/baidu-map",
"description": "百度地图 SDK.",
"license": "MIT",
"authors": [
{
"name": "her-cat",
"email": "i@her-cat.com"
}
],
"require": {
"php": ">=5.6",
"pimple/pimple": "^3.0",
"guzzlehttp/guzzle": "~6.0",
"monolog/monolog": "^1.24"
},
"require-dev": {
"phpunit/phpunit": "~5",
"mockery/mockery": "^1.2",
"mikey179/vfsstream": "^1.6"
},
"autoload": {
"psr-4": {
"HerCat\\BaiduMap\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"HerCat\\BaiduMap\\Tests\\": "tests/"
}
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyse",
"test": "vendor/bin/phpunit"
},
"suggest": {
"phpstan/phpstan": "PHP Static Analysis Tool - discover bugs in your code without running it!"
}
}