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: c91ccf3de72338d5154193cb2676593a4709eeca (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
36
37
38
39
40
{
	"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.3.0",
		"yubico/u2flib-server": "^1.0.1"
	},
	"require-dev": {
		"phpunit/phpunit": "^9.5.0",
		"roave/security-advisories": "dev-master",
		"nextcloud/coding-standard": "^0.5.0",
		"psalm/phar": "^4.3"
	},
	"scripts": {
		"lint": "find . -name \\*.php -not -path './vendor/*' -print0 | xargs -0 -n1 php -l",
		"cs:check": "php-cs-fixer fix --dry-run --diff",
		"cs:fix": "php-cs-fixer fix",
		"psalm": "psalm.phar",
		"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.3.0"
		}
	}
}