42 lines
1.0 KiB
JSON
42 lines
1.0 KiB
JSON
{
|
|
"name": "nextcloud/retro",
|
|
"description": "🕹️ Play your favorite retro games in Nextcloud",
|
|
"license": "AGPL-3.0-or-later",
|
|
"autoload": {
|
|
"psr-4": {
|
|
"OCA\\Retro\\": "lib/",
|
|
"OCA\\Files\\": "stubs/OCA/Files/",
|
|
"OCP\\": "vendor/nextcloud/ocp/OCP/"
|
|
},
|
|
"files": [
|
|
"stubs/OC_Image.php"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"lint": "find . -name \\*.php -not -path './vendor/*' -not -path './vendor-bin/*' -not -path './build/*' -print0 | xargs -0 -n1 php -l",
|
|
"cs:check": "php-cs-fixer fix --dry-run --diff",
|
|
"cs:fix": "php-cs-fixer fix",
|
|
"psalm": "psalm --threads=1 --no-cache --show-info=true",
|
|
"rector": "rector && composer cs:fix"
|
|
},
|
|
"require": {
|
|
"php": "^8.2"
|
|
},
|
|
"require-dev": {
|
|
"nextcloud/ocp": "^30.0.4",
|
|
"roave/security-advisories": "dev-latest",
|
|
"nextcloud/coding-standard": "^1.3.2",
|
|
"nextcloud/rector": "^0.2.1",
|
|
"rector/rector": "~1.2.10",
|
|
"symfony/mime": "^7.2.1",
|
|
"vimeo/psalm": "^5.26.1"
|
|
},
|
|
"config": {
|
|
"optimize-autoloader": true,
|
|
"sort-packages": true,
|
|
"platform": {
|
|
"php": "8.2"
|
|
}
|
|
}
|
|
}
|