-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 949 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
{
"name": "mindbreak/auto-tracer-bundle",
"description": "Automatic tracing in Symfony",
"type": "library",
"license": "Apache-2.0",
"require": {
"doctrine/dbal": "^3.1",
"psr/event-dispatcher": "^1.0",
"symfony/config": "^5.3",
"mindbreak/jaeger-php": "^0.1.0",
"symfony/dependency-injection": "^5.3",
"opentracing/opentracing": "^1.0",
"symfony/http-foundation": "^5.3",
"symfony/http-kernel": "^5.3"
},
"require-dev": {
"vimeo/psalm": "^4.7",
"friendsofphp/php-cs-fixer": "^3.0"
},
"authors": [
{
"name": "MinDBreaK",
"email": "[email protected]"
}
],
"scripts": {
"static": "vendor/bin/psalm",
"csfixer": "vendor/bin/php-cs-fixer fix --allow-risky yes"
},
"autoload": {
"psr-4": {
"Mindbreak\\AutoTracerBundle\\": "src/"
}
}
}