forked from hitrov/oci-arm-host-capacity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 936 Bytes
/
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
{
"name": "hitrov/oci-arm-host-capacity",
"description": "This script being run as cron job (e.g. every minute) allows to bypass Oracle Cloud Infrastructure 'Out of host capacity' error immediately when additional OCI capacity will appear in your Home Region / Availability domain.",
"type": "project",
"authors": [
{
"name": "Alexander Hitrov",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8.0 || ^8.1 || ^8.2 || ^8.3",
"hitrov/oci-api-php-request-sign": "^1.0",
"ext-curl": "*",
"ext-json": "*",
"vlucas/phpdotenv": "^5.4"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Hitrov\\":"src/"
}
},
"autoload-dev": {
"psr-4": {
"Hitrov\\Test\\": "tests/Hitrov/Test"
}
},
"license": "MIT"
}