forked from owncloud/music
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
25 lines (25 loc) · 877 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"name": "owncloud/music",
"description": "Music player and server for ownCloud and Nextcloud",
"license": "AGPL-3.0-or-later",
"require-dev": {
"behat/behat": "~3.0",
"guzzlehttp/guzzle": "~7.0",
"phpunit/phpunit": "^8.0",
"owncloud/coding-standard": "^2.0",
"phpstan/phpstan": "^1.8",
"nextcloud/ocp": "^20.0.0",
"doctrine/dbal": "*"
},
"config": {
"platform": {
"php": "7.4.0"
}
},
"scripts": {
"unit-tests": "phpunit --coverage-html coverage-html-unit --configuration tests/php/unit/phpunit.xml tests/php/unit",
"integration-tests": "phpunit --coverage-html coverage-html-integration --configuration tests/php/integration/phpunit.xml tests/php/integration",
"analyze": "phpstan",
"behat": "behat -c tests/behat.yml"
}
}