-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.16 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
{
"name": "thulium/retrofit-php",
"description": "Retrofit for PHP - A type-safe PHP REST client",
"type": "library",
"keywords": [
"http",
"http-client",
"rest",
"rest-client",
"retrofit"
],
"homepage": "https://github.com/thulium/retrofit-php",
"license": "MIT",
"support": {
"issues": "https://github.com/thulium/retrofit-php/issues"
},
"minimum-stability": "stable",
"require": {
"php": ">=8.2",
"guzzlehttp/guzzle": "^7.7",
"guzzlehttp/psr7": "^2.5",
"letsdrink/ouzo-goodies": "dev-master",
"nikic/php-parser": "^4.16",
"phpdocumentor/reflection-docblock": "^5.3",
"psr/http-message": "^2.0",
"rawr/t-regx": "^0.41",
"symfony/serializer": "^5.4 || ^6.3"
},
"require-dev": {
"phpunit/phpunit": "^10.2",
"symfony/property-access": "^5.4 || ^6.3"
},
"autoload": {
"psr-4": {
"Retrofit\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Retrofit\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}