-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
49 lines (49 loc) · 1.17 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
{
"name": "yupmin/laravel-phystrix",
"description": "An easy to use Phystrix integration for Laravel applications",
"license": "MIT",
"authors": [
{
"name": "Young-jin Yun",
"email": "[email protected]"
}
],
"homepage": "https://github.com/yupmin/laravel-phystrix",
"require": {
"php": "^7.4|^8.0|^8.1|^8.2",
"ext-apcu": "*",
"ext-json": "*",
"yupmin/modern-phystrix": "^5.0"
},
"require-dev": {
"nunomaduro/collision": "^4.3|^5.11|^6.3",
"orchestra/testbench": "^5.0|^6.0|^7.0",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"Yupmin\\Phystrix\\": "src"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Yupmin\\Phystrix\\ServiceProvider"
],
"aliases": {
"Phystrix": "Yupmin\\Phystrix\\Facades\\Phystrix"
}
}
}
}