-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 969 Bytes
/
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
{
"name": "gedankengut/gsales-api-php",
"description": "GSALES 3 REST PHP Client Library using PSR-17 and PSR-18",
"keywords": ["gsales", "api", "client"],
"homepage": "https://gsales.de",
"license": "MIT",
"authors": [
{
"name": "Gökhan Sirin",
"email": "[email protected]"
}
],
"require": {
"php": "^8",
"php-http/discovery": "^1.12",
"psr/http-client": "^1.0",
"psr/http-client-implementation": "^1.0",
"psr/http-factory": "^1.0",
"php-http/client-common": "^2.7"
},
"require-dev": {
"laminas/laminas-diactoros": "^2.4",
"php-http/curl-client": "^2.1",
"php-http/mock-client": "^1.4",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Gsales\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Gsales\\Tests\\": "tests"
}
}
}