-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.35 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.35 KB
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
{
"name": "jschaedl/api-client",
"license": "MIT",
"type": "library",
"description": "A generic api client implementation to avoid writing the same boiler plate code over and over again.",
"keywords": [
"PHP",
"generic",
"api",
"client"
],
"homepage": "https://github.com/jschaedl/api-client",
"authors": [
{
"name": "Jan Schädlich",
"homepage": "https://janschaedlich.de"
}
],
"autoload": {
"psr-4": {
"Api\\": "src/Api"
},
"files": ["examples/_function.php"]
},
"config": {
"sort-packages": true
},
"require": {
"php": "~8.2||~8.3",
"psr/http-client": "^1",
"psr/http-factory": "^1",
"webmozart/assert": "^1"
},
"require-dev": {
"azjezz/psl": "^2.9",
"brianium/paratest": "^6.11",
"friendsofphp/php-cs-fixer": "^3.49.0",
"guzzlehttp/guzzle": "^7.8.1",
"guzzlehttp/psr7": "^2.6.2",
"nyholm/psr7": "^1.8.1",
"phpstan/phpstan": "^1.10.58",
"phpstan/phpstan-phpunit": "^1.3.15",
"phpunit/phpunit": "^9.6.16",
"rector/rector": "^0.14.8",
"spatie/phpunit-snapshot-assertions": "^4.2.16",
"symfony/http-client": "^6.4.3",
"symplify/phpstan-rules": "^11.4.1.72",
"tomasvotruba/cognitive-complexity": "^0.0.1",
"tomasvotruba/type-coverage": "^0.0.1"
},
"provide": {
"php-http/client-implementation": "*"
}
}