forked from jukylin/jaeger-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 1.78 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
53
54
55
56
57
58
59
60
{
"name": "poyuki/jaeger-php",
"description": "php client for jaeger",
"keywords": [
"jaeger",
"trace",
"opentracing"
],
"license": "Apache-2.0",
"minimum-stability": "stable",
"require": {
"php": ">=5.6.0",
"ext-ctype": "*",
"ext-sockets": "*",
"ext-json": "*",
"packaged/thrift": "0.10.0",
"opentracing/opentracing": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^5",
"php-coveralls/php-coveralls": "^1.0",
"phpstan/phpstan": "^0.12.56",
"roave/security-advisories": "dev-master",
"slevomat/coding-standard": "^6.1"
},
"authors": [
{
"name": "jukylin",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Jaeger\\": "src\\Jaeger"
},
"files": [
"src/Jaeger/Constants.php"
]
},
"scripts": {
"test": "./vendor/bin/phpunit",
"app/validate": [
"@composer validate --no-check-all",
"@composer check-platform-reqs --no-ansi --no-interaction"
],
"app/ci": [
"@composer clearcache",
"@composer i --no-ansi --no-interaction --no-progress --optimize-autoloader --classmap-authoritative"
],
"app/code-analysis": "php vendor/bin/phpstan analyse --no-ansi --no-interaction --no-progress -l 5 src",
"app/code-analysis-dev": "php vendor/bin/phpstan analyse -l 7 src",
"app/code-style": "php vendor/bin/phpcs --standard=phpcs.xml --extensions=php",
"app/code-style-fix": "php vendor/bin/phpcbf -p --standard=phpcs.xml --extensions=php",
"app/tests": "php vendor/bin/codecept run unit"
},
"scripts-descriptions": {
"app/code-style": "Checks that the application code conforms to coding standard",
"app/code-style-fix": "Checks that the application code conforms to coding standard and automatically fix"
}
}