-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
53 lines (53 loc) · 1.01 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
{
"name": "jay-nay/ost-kit-php-client",
"description": "OST KIT - PHP Wrapper for the OST KIT REST API",
"homepage": "https://github.com/realJayNay/ost-kit-php-client",
"type": "library",
"keywords": [
"ost",
"ostkit",
"ost kit"
],
"license": "MIT",
"authors": [
{
"name": "Jay Nay",
"homepage": "https://github.com/realJayNay",
"role": "Developer"
}
],
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"support": {
"issues": "https://github.com/realJayNay/ost-kit-php-client/issues"
},
"autoload": {
"psr-4": {
"ostkit\\": [
"lib/"
],
"ostkit\\test\\": [
"tests/"
]
}
},
"require": {
"php": ">=5.6",
"ext-json": "*",
"ext-pcre": "*",
"composer/installers": "~1.0",
"monolog/monolog": ">=1.23.0"
},
"require-dev": {
"phpunit/phpunit": "^5",
"phpdocumentor/phpdocumentor": "dev-master"
},
"config": {
"platform": {
"php": "5.6"
}
}
}