-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.14 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.14 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
{
"name": "sudiptochoudhury/php-api-client-forge",
"description": "Create restful API client in PHP",
"keywords":["forge", "create", "php", "client", "rest", "api"],
"type": "library",
"homepage": "https://github.com/sudiptochoudhury/php-api-client-forge",
"license": "MIT",
"authors": [
{
"name": "Sudipto Choudhury",
"homepage": "https://sudipto.net",
"email": "mail@sudipto.net",
"role": "Developer"
}
],
"require": {
"php": ">=7.0.0",
"ext-json": "*",
"guzzlehttp/guzzle-services": "^1.1",
"doctrine/inflector": "^1.3|^2.0",
"monolog/monolog": "^1.12|^2.3.5|^3.5.0"
},
"require-dev": {
"phpunit/phpunit": "^7.2.0",
"mockery/mockery": "^1.1.0"
},
"autoload": {
"psr-4": {
"SudiptoChoudhury\\Support\\Forge\\Api\\": "src/support/forge/api/",
"SudiptoChoudhury\\Support\\Utils\\": "src/support/utils/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
},
"minimum-stability": "dev"
}