-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
39 lines (39 loc) · 1.08 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "nextcloud/twofactor_admin",
"description": "Nextcloud Two-Factor Authentication Admin Provider",
"type": "library",
"license": "AGPL-v3",
"authors": [
{
"name": "Christoph Wurst",
"email": "[email protected]"
}
],
"config": {
"platform": {
"php": "8.0"
},
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"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 -P $(nproc) php -l",
"test": "phpunit -c tests/phpunit.xml",
"test:integration": "phpunit -c tests/phpunit.xml tests/Integration",
"test:unit": "phpunit -c tests/phpunit.xml tests/Unit",
"test:integration:dev": "phpunit -c tests/phpunit.xml tests/Integration --no-coverage",
"test:unit:dev": "phpunit -c tests/phpunit.xml tests/Unit --no-coverage",
"post-install-cmd": [
"@composer bin all install --ansi"
],
"post-update-cmd": [
"@composer bin all update --ansi"
]
},
"require": {
"bamarni/composer-bin-plugin": "^1.8.2"
}
}