This repository has been archived by the owner on May 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
107 lines (107 loc) · 3.03 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "studiometa/wordpress-project",
"type": "project",
"authors": [
{
"name": "Studio Meta",
"email": "[email protected]"
}
],
"license": "MIT",
"require": {
"php": "^7.3",
"vlucas/phpdotenv": "^5.5.0",
"johnpbloch/wordpress": "6.*",
"timber/timber": "^1.20",
"studiometa/wp-toolkit": "^1.0",
"wp-media/wp-rocket": "^3.11",
"wpackagist-plugin/classic-editor": "^1.6",
"wpackagist-plugin/seo-by-rank-math": "^1.0",
"studiometa/advanced-custom-fields-pro": "^6.1.4",
"stoutlogic/acf-builder": "^1.12",
"boxuk/wp-muplugin-loader": "^2.0",
"djboris88/twig-commented-include": "^1.2",
"studiometa/ui": "^0.2.31"
},
"require-dev": {
"wpackagist-plugin/query-monitor": "^3.9",
"squizlabs/php_codesniffer": "^3.7",
"wp-coding-standards/wpcs": "^2.3",
"wp-cli/wp-cli-bundle": "^2.6",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
"phpstan/phpstan": "^1.7",
"szepeviktor/phpstan-wordpress": "^1.1",
"satesh/phpcs-gitlab-report": "^1.0",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"roave/security-advisories": "dev-latest",
"mikehaertl/php-shellcommand": "^1.6"
},
"repositories": [
{
"type": "composer",
"url": "https://gitlab.studiometa.dev/api/v4/group/73/-/packages/composer/"
},
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"scripts": {
"post-create-project-cmd": [
"@php scripts/create-project.php"
],
"post-install-cmd": [
"rm -rf ./web/wp/wp-content",
"cp config/scaffold/web/wp-config.php web/wp-config.php",
"cp config/scaffold/web/.htaccess web/.htaccess"
],
"post-update-cmd": [
"rm -rf ./web/wp/wp-content",
"cp config/scaffold/web/wp-config.php web/wp-config.php",
"cp config/scaffold/web/.htaccess web/.htaccess"
],
"phpstan": "phpstan analyse --memory-limit=512M",
"test": "echo 'No test specified' && exit 0",
"phpcs": "phpcs --cache -p -s --colors --extensions=php --standard=./phpcs.xml"
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"boxuk/wp-muplugin-loader": true,
"johnpbloch/wordpress-core-installer": true,
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4": {
"Studiometa\\": "web/wp-content/themes/studiometa/app"
}
},
"extra": {
"installer-types": [
"library",
"wordpress-plugin",
"wordpress-theme",
"wordpress-muplugin",
"wordpress-dropin"
],
"installer-paths": {
"web/wp-content/plugins/{$name}/": [
"type:wordpress-plugin"
],
"web/wp-content/themes/{$name}/": [
"type:wordpress-theme"
],
"web/wp-content/mu-plugins/{$name}/": [
"type:wordpress-muplugin"
],
"web/wp-content/{$name}/": [
"type:wordpress-dropin"
]
},
"wordpress-install-dir": "web/wp/"
},
"minimum-stability": "dev",
"prefer-stable": true
}