-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.67 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.67 KB
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
{
"name": "cdils/utility-pro",
"description": "Child theme for the Genesis Framework for WordPress",
"type": "wordpress-theme",
"license": "GPL-2.0+",
"homepage": "https://github.com/cdils/utility-pro",
"authors": [
{
"name": "Carrie Dils",
"email": "support@cdils.com",
"homepage": "https://store.carriedils.com",
"role": "Developer"
},
{
"name": "Gary Jones",
"homepage": "https://gamajo.com",
"role": "Developer"
}
],
"support": {
"email": "support@cdils.com",
"issues": "https://github.com/cdils/utility-pro/issues",
"source": "https://github.com/cdils/utility-pro"
},
"config": {
"sort-order": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.0",
"brightnucleus/config": "^0.4",
"composer/installers": "^1.2",
"roave/security-advisories": "dev-master",
"tgmpa/tgm-plugin-activation": "dev-develop"
},
"require-dev": {
"brain/monkey": "^2",
"dealerdirect/phpcodesniffer-composer-installer": "^0.4",
"phpunit/phpunit": "^6.3",
"wimg/php-compatibility": "dev-master",
"wp-coding-standards/wpcs": "dev-develop"
},
"autoload": {
"psr-4": {
"CDils\\UtilityPro\\": "lib/classes/"
}
},
"autoload-dev": {
"psr-4": {
"CDils\\UtilityPro\\Tests\\": "tests/"
}
},
"scripts": {
"install-codestandards": [
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
]
}
}