-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
42 lines (42 loc) · 1.1 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
{
"name": "oracle/oci-php-sdk",
"version": "0.1.0",
"homepage": "https://docs.oracle.com/en-us/iaas/Content/API/Concepts/devtoolslanding.htm",
"description": "OCI SDK for PHP - Oracle Cloud Infrastructure services in your PHP project",
"keywords": ["oci","oracle","sdk","objectstorage"],
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Oracle",
"homepage": "https://www.oracle.com"
}
],
"support": {
"forum": "https://community.oracle.com/tech/developers",
"issues": "https://community.oracle.com/mosc/"
},
"require": {
"guzzlehttp/guzzle": "^6.5",
"php": ">=5.6",
"cache/adapter-common": "^1.2"
},
"require-dev": {
"phpunit/phpunit": ">=5.7",
"overtrue/phplint": "^3.0",
"cache/filesystem-adapter": "^1.1"
},
"autoload": {
"classmap": [
"src/"
],
"files": [
"src/Oracle/Oci/Common/Utils.php"
]
},
"autoload-dev": {
"classmap": [
"tests/"
]
}
}