forked from ochi51/cybozu-http
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
64 lines (64 loc) · 1.58 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "webwarejp/cybozu-http",
"type": "library",
"description": "A PHP HTTP client library for cybozu.com API (kintone API and User API)",
"authors": [
{
"name": "Yuichi Ochiai",
"email": "[email protected]"
},
{
"name": "Omori Yusuke",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.0",
"guzzlehttp/guzzle": "^6.2",
"incenteev/composer-parameter-handler": "^2.1",
"symfony/yaml": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^5.6",
"jwage/easy-csv": "0.0.3.*"
},
"autoload": {
"psr-4": {
"CybozuHttp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CybozuHttp\\Tests\\": "tests/"
}
},
"config": {
"bin-dir": "bin"
},
"scripts": {
"post-install-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
],
"post-update-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
]
},
"extra": {
"incenteev-parameters": {
"file": "parameters.yml",
"dist-file": "parameters.dist.yml",
"env-map": {
"domain": "CYBOZU_DOMAIN",
"subdomain": "CYBOZU_SUB_DOMAIN",
"login": "CYBOZU_LOGIN",
"password": "CYBOZU_PASSWORD",
"use_basic": "CYBOZU_USE_BASIC",
"basic_login": "CYBOZU_BASIC_LOGIN",
"basic_password": "CYBOZU_BASIC_PASSWORD",
"use_client_cert": "CYBOZU_USE_CERT_FILE",
"cert_file": "CYBOZU_CERT_FILE_PASS",
"cert_password": "CYBOZU_CERT_PASSWORD"
}
}
}
}