-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.11 KB
/
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
42
43
44
45
46
47
{
"name": "cure-dao/cure-dao-sdk-php",
"version": "0.0.5",
"description": "A PHP SDK for the CureDAO Collaborative for Precision Health API",
"keywords": [
"curedao",
"health",
"php",
"sdk",
"api"
],
"homepage": "https://curedao.org",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Mike P. Sine",
"homepage": "https://github.com/mikepsinn"
}
],
"require": {
"php": ">=7.2",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"nategood/httpful": "^0.3",
"vlucas/phpdotenv": "^5",
"zircote/swagger-php": "*",
"icanboogie/inflector": "^2",
"illuminate/collections": "^8",
"pragmarx/ia-str": "^7",
"json-mapper/json-mapper": "^2",
"wanfeiyy/dd": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "*"
},
"autoload": {
"psr-4": {
"CureDAO\\Client\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"CureDAO\\Tests\\": "tests/"
}
}
}