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

composer.json - github.com/nextcloud/logreader.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bb703f20f93ecb37b697badc5b916c848af909cb (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
{
	"require-dev": {
		"nextcloud/coding-standard": "^0.4.0",
		"nextcloud/ocp": "dev-master",
		"php-parallel-lint/php-parallel-lint": "^1.0",
		"phpunit/phpunit": "^8",
		"vimeo/psalm": "^4.27"
	},
	"config": {
		"optimize-autoloader": true,
		"classmap-authoritative": true,
		"platform": {
			"php": "7.4"
		},
		"sort-packages": true
	},
	"scripts": {
		"lint": "parallel-lint --exclude src --exclude vendor --exclude target --exclude build .",
		"cs:check": "php-cs-fixer fix --dry-run --diff",
		"cs:fix": "php-cs-fixer fix",
		"psalm": "psalm --threads=1"
	},
	"autoload-dev": {
		"psr-4": {
			"OCP\\": "vendor/nextcloud/ocp/OCP"
		}
	}
}