circles/composer.json
Maxence Lange be8aca2b8a switching import to Tools\
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
2022-03-09 10:25:13 -01:00

35 lines
756 B
JSON

{
"name": "nextcloud/circles",
"description": "circles",
"minimum-stability": "stable",
"license": "agpl",
"config": {
"optimize-autoloader": true,
"classmap-authoritative": true,
"autoloader-suffix": "Circles",
"platform": {
"php": "7.4"
}
},
"authors": [
{
"name": "Maxence Lange",
"email": "maxence@artificial-owl.com"
}
],
"autoload": {
"psr-4": {
"OCA\\Circles\\": "lib/"
}
},
"scripts": {
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix",
"lint": "find . -name \\*.php -not -path './vendor/*' -print0 | xargs -0 -n1 php -l"
},
"require-dev": {
"nextcloud/coding-standard": "^0.5.0",
"phpunit/phpunit": "^9.5"
}
}