forked from taisph/laravel-opentracing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (58 loc) · 1.16 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
{
"name": "taisph/laravel-opentracing",
"description": "",
"keywords": [
"opentracing",
"laravel"
],
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Tais P. Hansen",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6",
"guzzlehttp/guzzle": "^6.2",
"illuminate/support": "^5.4.36",
"jonahgeorge/jaeger-client-php": "dev-feature/php56",
"opentracing/opentracing": "^1.0.0-beta5",
"paragonie/random_compat": "^2",
"psr/cache": "~1.0.1"
},
"require-dev": {
"mockery/mockery": "^1.2.2",
"php-coveralls/php-coveralls": "^2.1",
"phpunit/phpunit": "~5.7.27"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/taisph/jaeger-client-php"
}
],
"autoload": {
"psr-4": {
"LaravelOpenTracing\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LaravelOpenTracing\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"LaravelOpenTracing\\TracingServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}