ServerManager project files
This commit is contained in:
33
composer.json
Executable file
33
composer.json
Executable file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"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'); }\""
|
||||
]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user