-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
92 lines (92 loc) · 2.57 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
{
"name": "metabolism/wordpress-skeleton",
"type": "project",
"license": "MIT",
"description": "A minimal Symfony project recommended to create Wordpress applications",
"prefer-stable": true,
"repositories": [
{
"type":"composer", "url":"https://wpackagist.org"
}
],
"require": {
"php": ">=7.4",
"ext-ctype": "*",
"ext-iconv": "*",
"symfony/flex": "^1.17|^2",
"metabolism/wordpress-bundle": "^2.2.0",
"wpackagist-plugin/advanced-custom-fields": "^6.2.1",
"wpackagist-plugin/wordpress-seo": "^21.3.0",
"wpackagist-plugin/wp-smartcrop": "^2.0.7"
},
"flex-require": {
"symfony/console": "*",
"symfony/dotenv": "*",
"symfony/framework-bundle": "*",
"symfony/runtime": "*",
"symfony/yaml": "*"
},
"require-dev": {
"symfony/debug-bundle": "*",
"symfony/web-profiler-bundle": "*",
"symfony/stopwatch": "*",
"wpackagist-plugin/query-monitor": "^3.13.1"
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"symfony/flex": true,
"metabolism/wordpress-core-installer": true,
"metabolism/package-actions": true,
"symfony/runtime": true,
"php-http/discovery": false
}
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php72": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "5.4.*"
},
"installer-paths": {
"public/wp-bundle/mu-plugins/{$name}/": ["type:wordpress-muplugin"],
"public/wp-bundle/plugins/{$name}/": ["type:wordpress-plugin"],
"public/wp-bundle/themes/{$name}/": ["type:wordpress-theme"],
"public/edition/": ["type:wordpress-core"]
}
}
}