-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcomposer.json
50 lines (50 loc) · 1.57 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": "jcchavezs/zipkin-instrumentation-symfony",
"description": "A Zipkin integration for Symfony applications",
"type": "symfony-bundle",
"require": {
"php": ">=8.0",
"symfony/config": "^6.0",
"symfony/http-kernel": "^6.0",
"symfony/routing": "^6.0",
"symfony/dependency-injection": "^6.0",
"openzipkin/zipkin": "^3.0"
},
"require-dev": {
"jcchavezs/httptest": "~0.2",
"phpunit/phpunit": "~8",
"squizlabs/php_codesniffer": "^3.0@dev",
"symfony/http-client": "^6.0",
"phpspec/prophecy": "^1.15"
},
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "José Carlos Chávez",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"ZipkinBundle\\": "./src/ZipkinBundle/"
}
},
"autoload-dev": {
"psr-4": {
"ZipkinBundle\\Tests\\": "./tests/",
"ZipkinTests\\Unit\\Instrumentation\\Http\\": "./vendor/openzipkin/zipkin/tests/Unit/Instrumentation/Http/"
}
},
"scripts": {
"test": "./vendor/bin/phpunit tests/Unit",
"lint": "./vendor/bin/phpcs --standard=ZEND --standard=PSR2 --ignore=*/vendor/* --ignore=./tests/E2E/test-app/* ./",
"fix-lint": "./vendor/bin/phpcbf --standard=ZEND --standard=PSR2 --ignore=*/vendor/* --ignore=./tests/Integration/test-app/* ./"
},
"funding": [
{
"type": "paypal",
"url": "https://www.paypal.me/jcchavezs"
}
]
}