-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.35 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": "ericpridham/flow",
"description": ":package_description",
"license": "license",
"authors": [
{
"name": "Eric Pridham",
"email": "[email protected]",
"homepage": "https://github.com/ericpridham"
}
],
"homepage": "https://github.com/ericpridham/flow",
"keywords": ["Laravel", "Flow"],
"require": {
"illuminate/support": "^8|^9|^10|^11",
"ext-json": "*",
"ralouphie/getallheaders": "^3.0"
},
"suggest": {
"opentracing/opentracing": "Required to use the OpenTracing recorder",
"jcchavezs/zipkin-opentracing": "Required to send OpenTracing output to Zipkin"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"mockery/mockery": "^1.1",
"orchestra/testbench": "~7",
"sempro/phpunit-pretty-print": "^1.0",
"opentracing/opentracing": "^1.0"
},
"autoload": {
"psr-4": {
"EricPridham\\Flow\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"EricPridham\\Flow\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"EricPridham\\Flow\\FlowServiceProvider"
],
"aliases": {
"Flow": "EricPridham\\Flow\\Facades\\Flow"
}
}
}
}