-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
50 lines (50 loc) · 1.23 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
{
"name": "clouding/presto-client-php",
"description": "Presto client library for PHP.",
"keywords": ["presto", "http", "library"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Clouding",
"email": "ghost0436@gmail.com"
}
],
"require": {
"php": ">=7.2",
"ext-json": "*",
"guzzlehttp/guzzle": "~6.3"
},
"require-dev": {
"blastcloud/guzzler": "^1.0",
"mockery/mockery": "^1.2",
"phpstan/phpstan": "^0.11.2",
"phpstan/phpstan-mockery": "^0.11.0",
"phpunit/phpunit": "^8.0",
"squizlabs/php_codesniffer": "^3.4",
"symfony/var-dumper": "^4.2"
},
"autoload": {
"psr-4": {
"Clouding\\Presto\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Clouding\\Presto\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"test": [
"@phpunit",
"@phpcs",
"@phpstan"
],
"phpunit": "phpunit --verbose",
"phpcs": "phpcs -p",
"phpstan": "phpstan analyse --configuration phpstan.neon --level 2 src tests --ansi"
}
}