composer.json 1012 Bytes
{
	"name": "automattic/jetpack-status",
	"description": "Used to retrieve information about the current status of Jetpack and the site overall.",
	"type": "jetpack-library",
	"license": "GPL-2.0-or-later",
	"require": {
		"automattic/jetpack-constants": "^1.6"
	},
	"require-dev": {
		"brain/monkey": "2.6.1",
		"yoast/phpunit-polyfills": "1.0.3",
		"automattic/jetpack-changelogger": "^3.0"
	},
	"autoload": {
		"classmap": [
			"src/"
		]
	},
	"scripts": {
		"phpunit": [
			"./vendor/phpunit/phpunit/phpunit --colors=always"
		],
		"test-coverage": [
			"php -dpcov.directory=. ./vendor/bin/phpunit --coverage-clover \"$COVERAGE_DIR/clover.xml\""
		],
		"test-php": [
			"@composer phpunit"
		]
	},
	"minimum-stability": "dev",
	"prefer-stable": true,
	"extra": {
		"autotagger": true,
		"mirror-repo": "Automattic/jetpack-status",
		"changelogger": {
			"link-template": "https://github.com/Automattic/jetpack-status/compare/v${old}...v${new}"
		},
		"branch-alias": {
			"dev-master": "1.12.x-dev"
		}
	}
}