forked from Vinelab/tracing-laravel
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.92 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.92 KB
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
59
60
61
{
"name": "vinelab/tracing-laravel",
"description": "Distributed tracing for Laravel made easy",
"keywords": ["laravel", "tracing", "zipkin", "jaeger"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Alexander Diachenko",
"email": "adiach3nko@gmail.com"
}
],
"require": {
"php": "^7.1.3",
"illuminate/bus": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0",
"illuminate/console": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0",
"illuminate/contracts": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0",
"illuminate/http": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0",
"illuminate/log": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0",
"illuminate/container": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0",
"illuminate/queue": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0",
"illuminate/routing": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0",
"illuminate/support": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0",
"openzipkin/zipkin": "~1.0",
"psr/http-message": "~1.0",
"ramsey/uuid": "~3.0"
},
"require-dev": {
"google/cloud-pubsub": "^1.18",
"guzzlehttp/psr7": "~1.0",
"mockery/mockery": "~1.0",
"php-amqplib/php-amqplib": "~2.8",
"phpunit/phpunit": "~6.0",
"vinelab/http": "~1.5"
},
"suggest": {
"php-amqplib/php-amqplib": "A pure PHP implementation of the AMQP protocol",
"vinelab/http": "Simple fault-tolerant HTTP client for sending and receiving JSON and XML"
},
"autoload": {
"psr-4": {
"Vinelab\\Tracing\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Vinelab\\Tracing\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Vinelab\\Tracing\\TracingServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"prefer-stable": true
}