forked from jcchavezs/zipkin-instrumentation-doctrine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1.05 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
{
"name": "jcchavezs/zipkin-instrumentation-doctrine",
"description": "Zipkin instrumentation for Doctrine ORM",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "José Carlos Chávez",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"openzipkin/zipkin": "~1.3.1",
"doctrine/orm": "2.*"
},
"require-dev": {
"phpunit/phpunit": "~5.6.3",
"squizlabs/php_codesniffer": "3.*"
},
"autoload": {
"psr-4": {
"ZipkinDoctrine\\": "./src/ZipkinDoctrine/",
"ZipkinDoctrine\\Integrations\\": "./integrations/"
}
},
"autoload-dev": {
"psr-4": {
"ZipkinDoctrine\\Tests\\": "./tests/"
}
},
"scripts": {
"test": "./vendor/bin/phpunit tests",
"lint": "./vendor/bin/phpcs --standard=ZEND --standard=PSR2 --ignore=*/vendor/* ./",
"fix-lint": "./vendor/bin/phpcbf --standard=ZEND --standard=PSR2 --ignore=*/vendor/* ./"
}
}