opsdash-app/opsdash/composer.json
2026-04-14 10:39:03 +07:00

26 lines
658 B
JSON

{
"name": "gellertinnovation/opsdash",
"description": "Independent third-party operational dashboard for Nextcloud Calendar",
"type": "project",
"license": "agpl-3.0-or-later",
"require": {},
"require-dev": {
"phpstan/phpstan": "^1.12",
"phpunit/phpunit": "^9.6"
},
"autoload": {
"psr-4": {
"OCA\\Opsdash\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"OCA\\Opsdash\\Tests\\": "tests/php/"
}
},
"scripts": {
"test": "phpunit -c tests/phpunit.xml",
"test:unit": "phpunit -c tests/phpunit.xml",
"test:static": "phpstan analyse --configuration=phpstan.neon.dist --no-progress --debug"
}
}