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

composer.json - github.com/nextcloud/activity.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9f66d39bbbb4817327e73b845a8f39e391bb6acf (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
{
	"name": "nextcloud/activity",
	"description": "activity",
	"license": "AGPL",
	"require-dev": {
		"phpunit/phpunit": "^9.5",
		"nextcloud/coding-standard": "^1.0.0",
		"psalm/phar": "^4.3",
		"nextcloud/ocp": "dev-master"
	},
	"config": {
		"optimize-autoloader": true,
		"classmap-authoritative": true,
		"platform": {
			"php": "7.4"
		}
	},
	"autoload-dev": {
		"psr-4": {
			"OCP\\": "vendor/nextcloud/ocp/OCP",
			"OCA\\Activity\\": "lib/"
		}
	},
	"scripts": {
		"lint": "find . -name \\*.php -not -path './vendor/*' -not -path './build/*' -print0 | xargs -0 -n1 php -l",
		"cs:check": "vendor/bin/php-cs-fixer fix --dry-run --diff",
		"cs:fix": "vendor/bin/php-cs-fixer fix",
		"psalm": "psalm.phar"
	}
}