-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
64 lines (64 loc) · 1.86 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
{
"name": "cego/request-insurance",
"description": "Package for Laravel that facilitates and ensures that http requests are sent",
"type": "project",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Nikolaj Boel Jensen",
"email": "[email protected]"
}
],
"require": {
"php": "^8.3",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pcntl": "*",
"ext-curl": "*",
"nesbot/carbon": "^2.17|^3.0",
"illuminate/view": "^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/http": "^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/routing": "^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/console": "^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/database": "^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/pagination": "^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/encryption": "^7.0|^8.0|^9.0|^10.0|^11.0",
"guzzlehttp/guzzle": "^6.5.5|^7.2",
"jfcherng/php-diff": "^6.13",
"doctrine/dbal": "^3.3|^4.0"
},
"require-dev": {
"cego/php-cs-fixer": "^2.0",
"orchestra/testbench": "^6.0.0|^7.0.0|^8.0.0|^9.0.0",
"open-telemetry/sdk": "^1.0",
"spatie/laravel-prometheus": "^1.2"
},
"autoload": {
"psr-4": {
"Cego\\": "src/"
},
"files": [
"src/RequestInsurance/OpenTelemetry/_register.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Cego\\RequestInsurance\\RequestInsuranceServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}