-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.3 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.3 KB
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
{
"name": "upmind/provision-provider-shared-hosting",
"description": "This provision category contains the common functions used in provisioning flows for accounts/websites on various popular shared hosting platforms.",
"type": "library",
"license": "GPL-3.0-only",
"authors": [
{
"name": "Harry Lewis",
"email": "harry@upmind.com"
}
],
"autoload": {
"psr-4": {
"Upmind\\ProvisionProviders\\SharedHosting\\": "src/"
}
},
"require": {
"php": "8.1 - 8.3",
"ext-curl": "*",
"ext-json": "*",
"ext-simplexml": "*",
"ext-soap": "*",
"giggsey/libphonenumber-for-php-lite": "^8",
"illuminate/support": "^6.20 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
"plesk/api-php-lib": "^1.1",
"upmind/20i-php-sdk": "^1.1",
"upmind/enhance-sdk": "^10",
"upmind/provision-provider-base": "^4.0"
},
"require-dev": {
"phpstan/phpstan": "^1.10"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Upmind\\ProvisionProviders\\SharedHosting\\LaravelServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}