-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
62 lines (62 loc) · 1.61 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
{
"name": "carmine/wally",
"description": "WordPress project for the veronicaurbano.it website",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Carmine Colicino",
"email": "[email protected]"
}
],
"prefer-stable": true,
"minimum-stability": "dev",
"config": {
"preferred-install": "dist",
"process-timeout": 600,
"sort-packages": true,
"vendor-dir": "wp-content/vendor",
"allow-plugins": {
"composer/installers": true
}
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "path",
"url": "wp-content/plugins/wally-core",
"name": "colis/wally-core",
"options": {
"symlink": false
}
}
],
"require": {
"php": ">=8.1",
"colis/wally-core": "*",
"wpackagist-plugin/advanced-custom-fields": "^6.0",
"wpackagist-plugin/imagify": "^2.0",
"wpackagist-plugin/wordpress-seo": "^24.0",
"wpackagist-plugin/wordfence": "^8.0"
},
"require-dev": {
"wpackagist-plugin/query-monitor": "^3.8",
"wpackagist-plugin/regenerate-thumbnails": "^3.1.3"
},
"extra": {
"installer-paths": {
"wp-content/plugins/{$name}": [
"type:wordpress-plugin"
],
"wp-content/themes/{$name}": [
"type:wordpress-theme"
]
}
},
"scripts": {
"create-bundle": "composer install --no-dev -o && rm -f wally.zip && zip wally.zip -r . -x wp-config-local.php *.lock *.json .gitignore '.vscode/*' '.git*/*' 'wp-content/uploads/*' 'wp-content/themes/wally/node_modules/*' 'wp-content/themes/wally/assets/*'"
}
}