-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
87 lines (87 loc) · 2.18 KB
/
composer.json
File metadata and controls
87 lines (87 loc) · 2.18 KB
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
{
"name": "wp-spaghetti/wp-boot",
"description": "WP Boot is a lightweight Composer-based WordPress management system",
"license": "GPL-3.0-or-later",
"type": "project",
"keywords": [
"wp-boot",
"composer",
"wordpress",
"wp"
],
"authors": [
{
"name": "Frugan",
"email": "dev@frugan.it",
"homepage": "https://github.com/frugan-dev",
"role": "Developer"
}
],
"funding": [
{
"type": "custom",
"url": "https://buymeacoff.ee/frugan"
}
],
"require": {
"php": ">=8.1",
"composer/installers": "^2.2",
"inpsyde/wp-translation-downloader": "^2.6",
"johnpbloch/wordpress": "6.9.4",
"oscarotero/env": "^2.1",
"vlucas/phpdotenv": "^5.5"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.48",
"friendsofphp/php-cs-fixer": "^3.89"
},
"repositories": [
{
"name": "wp-packages",
"type": "composer",
"url": "https://repo.wp-packages.org",
"only": [
"wp-plugin/*",
"wp-theme/*"
]
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"composer/installers": true,
"ergebnis/composer-normalize": true,
"inpsyde/wp-translation-downloader": true,
"johnpbloch/wordpress-core-installer": true
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"installer-paths": {
"../../public/wp-content/mu-plugins/{$name}/": [
"type:wordpress-muplugin"
],
"../../public/wp-content/plugins/{$name}/": [
"type:wordpress-plugin"
],
"../../public/wp-content/themes/{$name}/": [
"type:wordpress-theme"
]
},
"wordpress-install-dir": "vendor/wordpress",
"wp-translation-downloader": {
"languageRootDir": "../../public/wp-content/languages",
"languages": []
}
},
"scripts": {
"post-install-cmd": "@post-cmd",
"post-update-cmd": "@post-cmd",
"lint": "@lint:fix --dry-run",
"lint:fix": "@php -d max_execution_time=0 -d memory_limit=-1 -f ./vendor/bin/php-cs-fixer fix --diff --using-cache=no",
"post-cmd": "./post-cmd.sh ../../public"
}
}