-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 774 Bytes
/
Copy pathcomposer.json
File metadata and controls
38 lines (38 loc) · 774 Bytes
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
{
"name": "uchm4n/api-client",
"description": "Any API Wrapper client library",
"license": "MIT",
"keywords": [
"U",
"API-Client",
"API Wrapper",
"jsonplaceholder",
"jsonplAPI"
],
"authors": [
{
"name": "UchMan",
"email": "uchm4n@gmail.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.4|^8.1",
"pestphp/pest": "^1.21",
"guzzlehttp/guzzle": "^7.4"
},
"autoload": {
"psr-4": {
"uchm4n\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"uchm4n\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/pest"
}
}