-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
38 lines (38 loc) · 1.06 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
{
"name": "genesis-explained",
"description": "Code examples from the Genesis Explained book.",
"keywords": [],
"type": "wordpress-plugin",
"license": "GPL-2.0+",
"homepage": "http://github.com/NicktheGeek/genesis-explained",
"authors": [
{
"name": "reaktivstudios",
"homepage": "http://reaktivstudios.com",
"role": "Developer"
}
],
"support": {
"issues": "http://github.com/NicktheGeek/genesis-explained/issues",
"source": "http://github.com/NicktheGeek/genesis-explained"
},
"config": {
"sort-order": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^5.2|^7",
"composer/installers": "^1.0",
"roave/security-advisories": "dev-master"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.4",
"squizlabs/php_codesniffer": "^3.2",
"wimg/php-compatibility": "dev-master",
"wp-coding-standards/wpcs": "0.14.0"
},
"scripts": {
"install-codestandards": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
}
}