Welcome to mirror list, hosted at ThFree Co, Russian Federation.

composer.json - github.com/nextcloud/twofactor_u2f.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d26e69d2a1201b46a926b230e1081a5b64f1e977 (plain)
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
{
	"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.1.0",
		"yubico/u2flib-server": "^1.0.1"
	},
	"require-dev": {
		"christophwurst/nextcloud": "16.0.0",
		"phpunit/phpunit": "^7.5.8"
	},
	"scripts": {
		"lint": "find . -name \\*.php -not -path './vendor/*' -exec php -l \"{}\" \\;",
		"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.1.0"
		}
	}
}