-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
52 lines (52 loc) · 1.31 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
43
44
45
46
47
48
49
50
51
52
{
"name": "ytake/php-presto-client",
"description": "php prestodb client",
"minimum-stability": "stable",
"keywords": ["prestodb"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "yuuki takezawa",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0.0",
"ext-curl": "*",
"psr/log": "~1.0",
"ramsey/uuid": "^3.0",
"guzzlehttp/guzzle": "^6.2",
"fig/http-message-util": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "~6.0",
"satooshi/php-coveralls": "*",
"phpmd/phpmd": "@stable",
"squizlabs/php_codesniffer": "~2.7",
"sebastian/phpcpd": "*",
"phploc/phploc": "*",
"pdepend/pdepend" : "^2.2.4",
"sensiolabs/security-checker": "^4.0.0",
"monolog/monolog": "^1.22"
},
"autoload": {
"psr-4": {
"Ytake\\PrestoClient\\": "src/"
}
},
"autoload-dev": {
"files": [
"tests/MockClientTrait.php",
"tests/TestReflectionTrait.php"
]
},
"scripts": {
"ci": [
"./vendor/bin/phpunit",
"./vendor/bin/phpcpd src/",
"./vendor/bin/phploc src/ --log-xml=tests/build/phploc.xml"
],
"phpcs": "./vendor/bin/phpcs src/ --report-full --report-source --standard=PSR2 --colors",
"security-checker": "./vendor/bin/security-checker security:check composer.lock"
}
}