-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
41 lines (41 loc) · 1.21 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
{
"name": "ihsw/toxiproxy-php-client",
"description": "PHP client for shopify/toxiproxy",
"license": "MIT",
"keywords": ["toxiproxy", "php", "client"],
"authors": [
{
"name": "Adrian Parker",
"email": "ihsw.aparker@gmail.com"
}
],
"require": {
"guzzlehttp/guzzle": "^6.0"
},
"require-dev": {
"phpunit/phpunit": "^6.5.5",
"squizlabs/php_codesniffer": "^3.2.2",
"react/socket": "^v0.8.2",
"react/socket-client": "^v0.7.0",
"php-coveralls/php-coveralls": "^2.0",
"phpdocumentor/phpdocumentor": "^v2.9.0"
},
"autoload": {
"psr-4": {
"Ihsw\\Toxiproxy\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Ihsw\\ToxyproxyTests\\Integration\\": "tests/integration",
"Ihsw\\ToxyproxyTests\\Unit\\": "tests/unit"
}
},
"scripts": {
"test": "./vendor/bin/phpunit tests",
"lint": "./vendor/bin/phpcs --standard=PSR2 --ignore=*/vendor/*,*/_reports/*,*/_docs/*,*/examples/vendor/* ./",
"fix-lint": "./vendor/bin/phpcbf --standard=PSR2 --ignore=*/vendor/*,*/_reports/*,*/_docs/*,*/examples/vendor/* ./",
"coveralls": "./vendor/bin/php-coveralls --coverage_clover=./_reports/clover.xml --json_path=./_reports/coveralls-upload.json",
"generate-docs": "./vendor/bin/phpdoc -d ./src -t ./_docs"
}
}