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

composer.json - github.com/nextcloud/richdocuments.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a8c4baecbcb6ea63ff7fdfac52916ed3e0f6dd9c (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
{
	"name": "nextcloud/richdocuments",
	"type": "project",
	"minimum-stability": "dev",
	"prefer-stable" : true,
	"config": {
		"platform": {
			"php": "7.4"
		}
	},
	"require-dev": {
		"roave/security-advisories": "dev-master",
		"christophwurst/nextcloud": "dev-master",
		"jakub-onderka/php-parallel-lint": "^1.0.0",
		"psalm/phar": "^4.7"
	},
	"license": "AGPLv3",
	"authors": [
		{
			"name": "Julius Härtl",
			"email": "jus@bitgrid.net"
		}
	],
	"scripts": {
		"lint": "find . -name \\*.php -not -path './vendor/*' -print0 | xargs -0 -n1 php -l",
		"psalm": "psalm.phar",
		"psalm:fix": "psalm.phar --alter --issues=InvalidReturnType,InvalidNullableReturnType,MismatchingDocblockParamType,MismatchingDocblockReturnType,MissingParamType,InvalidFalsableReturnType"
	}
}