-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
70 lines (70 loc) · 1.63 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
61
62
63
64
65
66
67
68
69
70
{
"name": "grottopress/jentil",
"description": "Jentil is a modern framework for rapid WordPress theme development",
"type": "wordpress-theme",
"license": "MIT",
"homepage": "https://www.grottopress.com/jentil/",
"authors": [
{
"name": "GrottoPress.com",
"email": "info@grottopress.com",
"homepage": "https://www.grottopress.com"
},
{
"name": "N Atta Kusi Adusei",
"homepage": "https://twitter.com/akadusei",
"role": "Developer"
}
],
"keywords": [
"jentil",
"wordpress"
],
"support": {
"issues": "https://github.com/GrottoPress/jentil/issues",
"wiki": "https://github.com/GrottoPress/jentil/wiki",
"source": "https://github.com/GrottoPress/jentil"
},
"require": {
"php": ">=7.0",
"composer/installers": "^1.12",
"grottopress/wordpress-breadcrumbs": "^1.0",
"grottopress/wordpress-meta-box": "^1.0",
"grottopress/wordpress-posts": "^1.0",
"grottopress/wordpress-suv": "^1.0",
"grottopress/mobile-detector": "^1.0"
},
"require-dev": {
"lucatume/wp-browser": "^3.1",
"codeception/module-asserts": "^1.3",
"lucatume/function-mocker": "^1.3",
"wp-cli/wp-cli-bundle": "^2.7"
},
"scripts": {
"test": [
"./vendor/bin/codecept run unit"
],
"wp": [
"./vendor/bin/wp"
]
},
"autoload": {
"psr-4": {
"GrottoPress\\": "app/"
},
"files": [
"app/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"GrottoPress\\": "tests/unit/app/"
}
},
"config": {
"allow-plugins": {
"kylekatarnls/update-helper": true,
"composer/installers": true
}
}
}