talk_matterbridge/composer.json
Joas Schilling 78579018ce
Add info.xml and PHP lint and an install test
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-11-23 10:14:02 +01:00

20 lines
423 B
JSON

{
"autoload-dev": {
"psr-4": {
"OCA\\TalkMatterbridge\\": "lib/"
}
},
"name": "nextcloud/talk_matterbridge",
"description": "talk_matterbridge",
"license": "AGPL",
"config": {
"optimize-autoloader": true,
"classmap-authoritative": true,
"platform": {
"php": "7.4"
}
},
"scripts": {
"lint": "find . -name \\*.php -not -path './vendor/*' -not -path './build/*' -print0 | xargs -0 -n1 php -l"
}
}