-
Notifications
You must be signed in to change notification settings - Fork 56
/
composer.json
44 lines (44 loc) · 1013 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
40
41
42
43
44
{
"name": "opentracing/opentracing",
"type": "library",
"description": "OpenTracing API for PHP",
"license": "Apache-2.0",
"minimum-stability": "stable",
"authors": [
{
"name": "José Carlos Chávez",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1 || ^8.0"
},
"require-dev": {
"phpstan/phpstan": "~0.12",
"phpunit/phpunit": "^7.0 || ^9.0",
"squizlabs/php_codesniffer": "3.*"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"OpenTracing\\": "src/OpenTracing/"
},
"files": [
"src/OpenTracing/Tags.php",
"src/OpenTracing/Formats.php"
]
},
"autoload-dev": {
"psr-4": {
"OpenTracing\\Tests\\": "tests/OpenTracing"
}
},
"scripts": {
"fix-lint": "phpcbf --standard=ZEND --standard=PSR2 --ignore=*/vendor/* ./",
"lint": "phpcs --standard=ZEND --standard=PSR2 --ignore=*/vendor/* ./",
"test": "phpunit tests",
"static-check": "phpstan analyse"
}
}