-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.24 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
{
"name": "gnowland/wp-jet-fuel",
"type": "wordpress-plugin",
"license": "MIT",
"description": "Facilitates the addition of custom functionality to a WordPress website, including Custom Post Types, Meta Fields, Widgets, Taxonomies, Shortcodes, Admin Modificaitons etc.",
"homepage": "https://github.com/gnowland/wp-jet-fuel",
"authors": [
{
"name": "Gifford Nowland",
"email": "hi@giffordnowland.com",
"homepage": "https://github.com/gnowland"
}
],
"keywords": [
"wordpress", "wordpress plugin", "plugin"
],
"support": {
"issues": "https://github.com/gnowland/wp-jet-fuel/issues"
},
"require": {
"php": ">=5.4.0",
"composer/installers": "~1.0",
"phing/phing": "^2.16"
},
"require-dev": {
"squizlabs/php_codesniffer": "3.5.0"
},
"suggest": {
"soberwp/models": "Create custom post types and taxonomies using JSON, YAML or PHP",
"soberwp/intervention": "Modules to cleanup and customize wp-admin"
},
"autoload": {
"psr-4": {
"Gnowland\\JetFuel\\": "src/",
"Gnowland\\JetFuel\\Module\\": "src/modules/"
}
},
"scripts": {
"test": [
"vendor/bin/phpcs --extensions=php --ignore=vendor/ "
],
"build": [
"vendor/bin/phing"
]
}
}