-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (62 loc) · 1.77 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
{
"name": "xbnz/laravel-multi-api",
"description": "Asynchronous API wrapper with proxy and multiple key support for Laravel",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "A G",
"email": "[email protected]"
}
],
"require": {
"guzzlehttp/guzzle": "^7.4",
"ext-intl": "*",
"caseyamcl/guzzle_retry_middleware": "^2.7",
"kevinrob/guzzle-cache-middleware": "^4.0",
"illuminate/config": "^9.0",
"illuminate/cache": "^9.0",
"illuminate/collections": "^9.0",
"illuminate/http": "^9.0",
"illuminate/support": "^9.0",
"league/iso3166": "^4.0"
},
"require-dev": {
"orchestra/testbench": "^7.4",
"phpunit/phpunit": "^9.5",
"spatie/invade": "^1.0",
"symplify/easy-coding-standard": "^10.2",
"infection/infection": "^0.26.6",
"nunomaduro/larastan": "^2.1",
"phpstan/phpstan-mockery": "^1.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-phpunit": "^1.1",
"phpstan/phpstan-webmozart-assert": "^1.1",
"phpmd/phpmd": "^2.12",
"vimeo/psalm": "^4.25"
},
"autoload": {
"psr-4": {
"XbNz\\Resolver\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"XbNz\\Resolver\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"XbNz\\Resolver\\ServiceProviders\\IpServiceProvider",
"XbNz\\Resolver\\ServiceProviders\\ResolverServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"infection/extension-installer": true,
"phpstan/extension-installer": true
}
}
}