-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
71 lines (71 loc) · 2.14 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
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "vinelab/tracing-laravel",
"description": "Distributed tracing for Laravel made easy",
"keywords": [
"laravel",
"tracing",
"zipkin",
"jaeger",
"lucid"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Alexander Diachenko",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1.3",
"illuminate/bus": ">=5.5.0",
"illuminate/console": ">=5.5.0",
"illuminate/contracts": ">=5.5.0",
"illuminate/http": ">=5.5.0",
"illuminate/log": ">=5.5.0",
"illuminate/container": ">=5.5.0",
"illuminate/queue": ">=5.5.0",
"illuminate/routing": ">=5.5.0",
"illuminate/support": ">=5.5.0",
"openzipkin/zipkin": "~2.0.2|~3.0",
"psr/http-message": "~1.0",
"ramsey/uuid": "~3.0|~4.0"
},
"require-dev": {
"google/cloud-pubsub": "^1.18",
"guzzlehttp/psr7": "~1.0|~2.0",
"mockery/mockery": "~1.0",
"php-amqplib/php-amqplib": "~2.8|~3.0",
"phpunit/phpunit": "~7.0|~8.0|~9.0",
"vinelab/http": "~1.5",
"lucid-arch/laravel-foundation": "^7.0|^8.0",
"lucidarch/lucid": "^1.0"
},
"suggest": {
"php-amqplib/php-amqplib": "A pure PHP implementation of the AMQP protocol",
"vinelab/http": "Fault-tolerant HTTP client for sending and receiving JSON and XML that we also support tracing for",
"lucid-arch/laravel-foundation": "Base package for the legacy Lucid Architecture that we also support tracing for",
"lucidarch/lucid": "Latest distribution package for the Lucid Architecture that we also support tracing for"
},
"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
}