34 lines
781 B
JSON
Executable File
34 lines
781 B
JSON
Executable File
{
|
|
"name": "servermanager/servermanager",
|
|
"description": "Web-based Linux Server Management Platform",
|
|
"type": "project",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "ServerManager Team"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=8.3",
|
|
"phpseclib/phpseclib": "^3.0",
|
|
"vlucas/phpdotenv": "^5.6",
|
|
"ext-pdo": "*",
|
|
"ext-openssl": "*",
|
|
"ext-json": "*",
|
|
"ext-mbstring": "*"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"ServerManager\\": "src/"
|
|
},
|
|
"files": [
|
|
"src/Helpers/functions.php"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"post-install-cmd": [
|
|
"@php -r \"if (!file_exists('.env')) { copy('.env.example', '.env'); }\""
|
|
]
|
|
}
|
|
}
|