-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
60 lines (60 loc) · 1.92 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": "gamajo/genesis-js-no-js",
"type": "wordpress-plugin",
"description": "WordPress plugin for Genesis child themes to allow differing styles for elements if JavaScript is active or not.",
"keywords": [
"genesis",
"genesis-js-no-js",
"javascript"
],
"homepage": "https://github.com/GaryJones/genesis-js-no-js",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Gary Jones",
"homepage": "https://garyjones.io",
"role": "Developer"
}
],
"require": {
"php": "^7.0 || ^8",
"composer/installers": "^1"
},
"require-dev": {
"php": "^7.1 || ^8",
"automattic/phpcs-neutron-standard": "^1.5",
"brain/monkey": "^2.2",
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.4",
"infection/infection": "0.10.*",
"phpcompatibility/phpcompatibility-wp": "^2",
"phpunit/phpunit": "^6.4",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "3.3.2",
"wp-coding-standards/wpcs": "^1.1"
},
"config": {
"sort-order": true
},
"autoload": {
"psr-4": {
"Gamajo\\GenesisJsNoJs\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Gamajo\\GenesisJsNoJs\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"install-codestandards": [
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
],
"phpcs": "phpcs && phpcs ./genesis-js-no-js.php -sp --standard=PHPCompatibility --runtime-set testVersion 5.2 && phpcs ./tests -sp --standard=PHPCompatibility --runtime-set testVersion 7.1"
},
"support": {
"issues": "https://github.com/GaryJones/genesis-js-no-js/issues",
"source": "https://github.com/GaryJones/genesis-js-no-js"
}
}