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

composer.json - github.com/nextcloud/deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f2d1ae38806eb80af452c0359cdedd4cbdcea9f5 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
{
	"name": "nextcloud/deck",
	"type": "project",
	"license": "AGPLv3",
	"authors": [
		{
			"name": "Julius Härtl",
			"email": "jus@bitgrid.net"
		}
	],
	"require": {
		"cogpowered/finediff": "0.3.*",
		"justinrainbow/json-schema": "^5.2"
	},
	"require-dev": {
		"roave/security-advisories": "dev-master",
		"phpunit/phpunit": "^9",
		"nextcloud/coding-standard": "^1.0.0",
		"symfony/event-dispatcher": "^4.0",
		"vimeo/psalm": "^4.3",
		"php-parallel-lint/php-parallel-lint": "^1.2",
		"nextcloud/ocp": "dev-master"
	},
	"config": {
		"optimize-autoloader": true,
		"classmap-authoritative": true,
		"allow-plugins": {
			"composer/package-versions-deprecated": true
		},
		"platform": {
			"php": "7.4"
		}
	},
	"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",
		"psalm:update-baseline": "psalm --update-baseline",
		"psalm:fix": "psalm --alter --issues=InvalidReturnType,InvalidNullableReturnType,MismatchingDocblockParamType,MismatchingDocblockReturnType,MissingParamType,InvalidFalsableReturnType",
		"test": [
			"@test:unit",
			"@test:integration"
		],
		"test:unit": "phpunit -c tests/phpunit.xml",
		"test:integration": "phpunit -c tests/phpunit.integration.xml && cd tests/integration && ./run.sh"
	},
	"autoload-dev": {
		"psr-4": {
			"OCP\\": "vendor/nextcloud/ocp/OCP"
		}
	}
}