-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 846 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 846 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
39
40
41
{
"name": "ostdotcom/ost-sdk-php",
"homepage": "https://platform.ost.com/",
"description": "OST Platform SDK for PHP",
"keywords": ["OST","Simple Token","SDK","PHP"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "OST.com Inc."
}
],
"support": {
"wiki": "https://dev.ost.com/",
"forum": "https://help.ost.com/",
"issues": "https://github.com/ostdotcom/ost-sdk-php/issues"
},
"require": {
"php": ">=5.5.0",
"guzzlehttp/guzzle": "~6.0"
},
"require-dev": {
"vlucas/phpdotenv": "v2.4.0",
"phpunit/phpunit": "^4"
},
"autoload": {
"psr-4": {
"Lib\\": "src/Lib/",
"OST\\": "src/Services/",
"": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Lib\\": "tests/Lib/"
}
},
"config": {
"optimize-autoloader": true
}
}