retro/composer.json

42 lines
1.0 KiB
JSON
Raw Permalink Normal View History

2024-12-26 21:15:05 +01:00
{
"name": "nextcloud/retro",
2024-12-26 21:30:13 +01:00
"description": "🕹️ Play your favorite retro games in Nextcloud",
2024-12-26 21:15:05 +01:00
"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"
]
2024-12-26 21:15:05 +01:00
},
"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"
2024-12-26 21:15:05 +01:00
},
"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",
2024-12-26 21:15:05 +01:00
"vimeo/psalm": "^5.26.1"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "8.2"
2024-12-26 21:15:05 +01:00
}
}
}