twofactor_u2f/composer.json

35 строки
896 B
JSON

{
"name": "christophwurst/twofactor_u2f",
"description": "A two factor provider for U2F devices for Nextcloud",
"type": "project",
"license": "agplv3",
"authors": [
{
"name": "Christoph Wurst",
"email": "christoph@winzerhof-wurst.at"
}
],
"require": {
"php": ">=7.0.0",
"yubico/u2flib-server": "^1.0.1"
},
"require-dev": {
"christophwurst/nextcloud": "dev-master",
"phpunit/phpunit": "^6.5.5"
},
"scripts": {
"test": "phpunit -c tests/phpunit.xml",
"test:acceptance": "phpunit -c tests/phpunit.xml tests/Acceptance",
"test:unit": "phpunit -c tests/phpunit.xml tests/Unit",
"test:acceptance:dev": "phpunit -c tests/phpunit.xml tests/Acceptance --no-coverage",
"test:unit:dev": "phpunit -c tests/phpunit.xml tests/Unit --no-coverage"
},
"config": {
"optimize-autoloader": true,
"classmap-authoritative": true,
"platform": {
"php": "7.0.0"
}
}
}