-
Notifications
You must be signed in to change notification settings - Fork 209
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 1.32 KB
/
composer.json
File metadata and controls
37 lines (37 loc) · 1.32 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
{
"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",
"owncloud/coding-standard": "^5.0",
"phpstan/phpstan": "^2.0",
"nextcloud/ocp": "^20.0.0",
"doctrine/dbal": "*",
"bamarni/composer-bin-plugin": "^1.8"
},
"config": {
"platform": {
"php": "7.4.0"
},
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"scripts": {
"unit-tests": "vendor-bin/phpunit/vendor/bin/phpunit --coverage-html coverage-html-unit --configuration tests/php/unit/phpunit.xml tests/php/unit",
"integration-tests": "vendor-bin/phpunit/vendor/bin/phpunit --coverage-html coverage-html-integration --configuration tests/php/integration/phpunit.xml tests/php/integration",
"analyze": "phpstan",
"behat": "behat -c tests/behat.yml --format=progress",
"cs:check": "php-cs-fixer fix --dry-run --diff --allow-risky=yes",
"cs:fix": "php-cs-fixer fix --allow-risky=yes"
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"target-directory": "vendor-bin",
"forward-command": true
}
}
}