vortrixs/composer-scrutinizer-plugin

There is no license information available for the latest version (1.0.1) of this package.

Installs: 25 771

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 1

Open Issues: 0

Type:composer-plugin

1.0.1 2018-07-18 13:26 UTC

This package is auto-updated.

Last update: 2024-09-29 04:36:58 UTC


README

This is a simple plugin made for easy integration with Scrutinizer

Usage

In your projects composer.json file, you'll first have to add the "extra" property, this is were the plugin gets it's data from.

Inside that you'll add a property called "scrutinizer" and inside here you add properties for each of your nodes.

Inside the node properties you can define what packages should be downloaded.

Example:

"name": "vortrixs/app",
"require": {
	"vortrixs/composer-scrutinizer-plugin": "*",
	"squizlabs/php_codesniffer": "2.9.1",
	"joomla/coding-standards": "1.3.4",
	"vortrixs/joomla-namespace-checker": "1.0.0"
},
"extra": {
	"scrutinizer": {
		"phpcs": [
			"squizlabs/php_codesniffer",
			"joomla/coding-standards"
		],
		"namespace": [
			"vortrixs/joomla-namespace-checker"
		]
	}
},