-
Notifications
You must be signed in to change notification settings - Fork 62
/
composer.json
42 lines (42 loc) · 1.15 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
{
"name": "gamajo/template-loader",
"description": "A class for your WordPress plugin, to allow loading template parts with fallback through the child theme > parent theme > plugin",
"keywords": [
"wordpress",
"templates"
],
"homepage": "https://github.com/GaryJones/Gamajo-Template-Loader",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Gary Jones",
"homepage": "https://gamajo.com",
"role": "Developer"
}
],
"require": {
"php": ">=5.2.4"
},
"require-dev": {
"php": ">=7.1",
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.4",
"phpcompatibility/phpcompatibility-wp": "^2",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.3",
"wp-coding-standards/wpcs": "^1"
},
"suggest": {
"coenjacobs/mozart": "Easily wrap this library with your own prefix, to prevent collisions when multiple plugins use this library"
},
"config": {
"sort-packages": true
},
"autoload": {
"classmap": [
"class-gamajo-template-loader.php"
]
},
"support": {
"issues": "https://github.com/GaryJones/Gamajo-Template-Loader/issues"
}
}