-
Notifications
You must be signed in to change notification settings - Fork 43
/
composer.json
66 lines (66 loc) · 2 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
{
"name": "justintadlock/mythic",
"description": "Mythic is a next-generation starter theme designed to help theme authors write elegant, intelligent, and modern code.",
"license": "GPL-2.0-or-later",
"type": "wordpress-theme",
"keywords": [
"wordpress"
],
"authors": [
{
"name": "Justin Tadlock",
"email": "[email protected]",
"homepage": "https://themehybrid.com"
}
],
"homepage": "https://themehybrid.com/themes/mythic",
"require": {
"php": ">=7.4",
"themehybrid/hybrid-attr": "^1.0",
"themehybrid/hybrid-core": "^6.0",
"themehybrid/hybrid-lang": "^1.0",
"themehybrid/hybrid-media-meta": "^1.0",
"themehybrid/hybrid-pagination": "^1.0",
"themehybrid/hybrid-template": "^1.0",
"themehybrid/hybrid-template-hierarchy": "^1.0",
"themehybrid/hybrid-template-manager": "^1.0",
"themehybrid/hybrid-theme": "^1.0",
"themehybrid/hybrid-tools": "^1.0",
"themehybrid/hybrid-view": "^1.0"
},
"require-dev": {
"humanmade/psalm-plugin-wordpress": "^2.1",
"php-parallel-lint/php-parallel-lint": "^1.3",
"sirbrillig/phpcs-variable-analysis": "^2.11",
"slevomat/coding-standard": "^8.12",
"szepeviktor/phpstan-wordpress": "^1.3",
"tideways/ext-tideways-stubs": "^5.5",
"vimeo/psalm": "^4.0",
"wptrt/wpthemereview": "^0.2.1"
},
"autoload": {
"psr-4": {
"Mythic\\": "app/"
}
},
"config": {
"allow-plugins": {
"composer/installers": true,
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"analyze": [
"@phpstan:analyze",
"@psalm:analyze",
"@phpcs:analyze"
],
"lint": "@php ./vendor/bin/parallel-lint --exclude .git --exclude vendor ./app",
"phpcs:analyze": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs",
"phpcs:fix": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcbf",
"phpstan:analyze": "@php ./vendor/bin/phpstan analyze",
"psalm:analyze": "@php ./vendor/bin/psalm",
"post-install-cmd": "@php ./vendor/bin/phpcs --config-set default_standard Mythic"
}
}