summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: fc5607ec17b2f7f71d3e92801211d869dc7a0956 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
	"name": "nextcloud/contacts",
	"config": {
		"optimize-autoloader": true,
		"classmap-authoritative": true,
		"platform": {
			"php": "7.3"
		}
	},
	"scripts": {
		"cs:fix": "php-cs-fixer fix",
		"cs:check": "php-cs-fixer fix --dry-run --diff",
		"lint": "find . -name \\*.php -not -path './vendor/*' -print0 | xargs -0 -n1 php -l",
		"test:unit": "phpunit -c phpunit.xml --fail-on-warning",
		"test:integration": "phpunit -c phpunit.integration.xml --fail-on-warning"
	},
	"require-dev": {
        "christophwurst/nextcloud_testing": "^0.12.4",
		"nextcloud/coding-standard": "^0.5.0",
		"phpunit/phpunit": "^9"
	}
}