-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.34 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
{
"name": "kermage/themeplate",
"description": "A toolkit to handle everything related in developing a full-featured WordPress theme.",
"type": "wordpress-plugin",
"license": "GPL-3.0-only",
"authors": [
{
"name": "Gene Alyson Fortunado Torcende",
"email": "[email protected]"
}
],
"keywords": [
"wordpress",
"plugin"
],
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^5.6|^7.0|^8.0",
"ext-json": "*",
"kermage/external-update-manager": "^2.1"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"phpstan/phpstan": "^0.12.99",
"phpunit/phpunit": "^5.7.27",
"squizlabs/php_codesniffer": "^3.5",
"wp-coding-standards/wpcs": "^2.2"
},
"autoload": {
"psr-4": {
"ThemePlate\\Legacy\\": [
"includes/"
]
},
"classmap": [
"includes/Column/",
"includes/NavWalker/",
"includes/Page/",
"includes/Settings/"
],
"files": [
"class-themeplate.php",
"includes/compatibility.php",
"includes/Core/functions.php"
]
},
"scripts": {
"analyse": "phpstan analyse --memory-limit=256M",
"lint": "phpcs --colors -p -s -v",
"fix": "phpcbf -p -v",
"test": "phpunit --colors=always"
}
}