68 lines
1.6 KiB
JSON
Executable File
68 lines
1.6 KiB
JSON
Executable File
{
|
|
"name": "din9xtr/cloud-control-panel",
|
|
"description": "A lightweight, self-hosted cloud management panel for personal storage",
|
|
"type": "project",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"cloud",
|
|
"storage",
|
|
"file-manager",
|
|
"self-hosted",
|
|
"docker",
|
|
"php"
|
|
],
|
|
"homepage": "https://github.com/din9xtr/cloud_control_panel",
|
|
"support": {
|
|
"issues": "https://github.com/din9xtr/cloud_control_panel/issues",
|
|
"source": "https://github.com/din9xtr/cloud_control_panel"
|
|
},
|
|
"authors": [
|
|
{
|
|
"name": "Din9xtr",
|
|
"homepage": "https://github.com/din9xtr"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^8.5",
|
|
"nikic/fast-route": "^1.3",
|
|
"monolog/monolog": "^3",
|
|
"nyholm/psr7": "^1.3.2",
|
|
"nyholm/psr7-server": "^1.0",
|
|
"psr/container": "^2.0",
|
|
"psr/http-server-middleware": "^1.0",
|
|
"relay/relay": "^3.0",
|
|
"ext-pdo": "*",
|
|
"ext-fileinfo": "*",
|
|
"ext-zip": "*",
|
|
"php-http/curl-client": "^2.4"
|
|
},
|
|
"require-dev": {
|
|
"phpstan/phpstan": "^2.1",
|
|
"phpstan/extension-installer": "^1.4",
|
|
"phpunit/phpunit": "^10.5",
|
|
"friendsofphp/php-cs-fixer": "^3.92"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Din9xtrCloud\\": "src/"
|
|
},
|
|
"files": [
|
|
"src/Helpers/helpers.php"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"test": "phpunit",
|
|
"analyse": "phpstan analyse src --level=8",
|
|
"analyse-strict": "phpstan analyse src --level=max",
|
|
"coverage": "phpunit --coverage-html coverage",
|
|
"cs-check": "php-cs-fixer fix --dry-run --diff",
|
|
"cs-fix": "php-cs-fixer fix"
|
|
},
|
|
"config": {
|
|
"allow-plugins": {
|
|
"phpstan/extension-installer": true,
|
|
"php-http/discovery": true
|
|
}
|
|
}
|
|
}
|