-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
41 lines (41 loc) · 999 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
38
39
40
41
{
"name": "happyr-match/api-client",
"description": "A client for Happyr match API",
"license": "MIT",
"keywords": [
"api",
"happyr match"
],
"authors": [
{
"name": "Tobias Nyholm",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"php-http/client-common": "^2.0",
"php-http/discovery": "^1.7",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"webmozart/assert": "^1.4"
},
"require-dev": {
"nyholm/nsa": "^1.0",
"nyholm/psr7": "^1.1",
"php-http/curl-client": "^2.0",
"php-http/message": "^1.0",
"php-http/message-factory": "^1.0",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"HappyrMatch\\ApiClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HappyrMatch\\ApiClient\\Tests\\": "tests/"
}
}
}