forked from seothemes/genesis-starter-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.99 KB
/
composer.json
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "seothemes/genesis-starter-theme",
"type": "wordpress-theme",
"description": "Genesis starter theme with a modern development workflow.",
"keywords": [
"WordPress",
"wordpress-theme-development",
"genesis-framework"
],
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Lee Anthony",
"homepage": "https://seothemes.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/seothemes/genesis-starter-theme/issues",
"source": "https://github.com/seothemes/genesis-starter-theme"
},
"require": {
"php": ">=5.6"
},
"require-dev": {
"php": "^5.6|^7",
"brain/monkey": "^2.2",
"dealerdirect/phpcodesniffer-composer-installer": "v0.5.0",
"phpcompatibility/phpcompatibility-wp": "2.0.0",
"phpunit/phpunit": "~5.7.9",
"seothemes/genesis-config-exporter": "@dev",
"squizlabs/php_codesniffer": "^3.4.2",
"wp-coding-standards/wpcs": "2.1.0",
"wp-phpunit/wp-phpunit": "^5.1"
},
"autoload-dev": {
"psr-4": {
"SeoThemes\\GenesisStarterTheme\\Tests\\Unit\\": "tests/php/unit/",
"SeoThemes\\GenesisStarterTheme\\Tests\\Integration\\": "tests/php/integration/"
}
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-order": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"stylelint": [
"stylelint './assets/scss/**/*.scss' --fix"
],
"install-codestandards": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run",
"phpcs": "phpcs --standard=WordPress --extensions=php -p -s lib config templates tests functions.php",
"phpcbf": "phpcbf --standard=WordPress --extensions=php -p lib config templates tests functions.php",
"test-unit": "composer dump && \"vendor/bin/phpunit\" --testsuite unit --color=always",
"test-integration": "composer dump && \"vendor/bin/phpunit\" --testsuite integration --configuration tests/phpunit/integration/phpunit.xml.dist --color=always"
}
}