summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: dc715a9ec10c97aed07522743f61db069b292180 (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
{
	"name": "cssjanus/cssjanus",
	"description": "Convert CSS stylesheets between left-to-right and right-to-left.",
	"license": "Apache-2.0",
	"autoload": {
		"psr-0": {
			"": "src/"
		}
	},
	"require": {
		"php": ">=5.4"
	},
	"require-dev": {
		"jakub-onderka/php-parallel-lint": "0.8.*",
		"phpunit/phpunit": "4.8.*",
		"squizlabs/php_codesniffer": "2.3.*"
	},
	"scripts": {
		"test": [
			"parallel-lint . --exclude vendor",
			"phpunit",
			"phpcs -p"
		]
	}
}