forked from metabolism/wordpress-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
66 lines (66 loc) · 2.3 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":"dreimus/wordpress-bundle",
"type": "symfony-bundle",
"version": "1.4.10",
"description": "Use Wordpress 5 as a backend for a Symfony application",
"license": "GPL-3.0-or-later",
"require": {
"php" : ">=5.6.1",
"ext-zip" : "*",
"ext-fileinfo" : "*",
"ext-json" : "*",
"ext-mbstring" : "*",
"ext-zlib": "*",
"metabolism/wordpress-core-installer": "1.0.*",
"dreimus/package-actions": "^1.1.2",
"johnpbloch/wordpress-core": "5.*",
"ifsnop/mysqldump-php":"2.*",
"dflydev/dot-access-data":"~1.0",
"enshrined/svg-sanitize": "0.*",
"intervention/image": "2.*"
},
"suggest": {
"elliotcondon/advanced-custom-fields-pro": "Customise WordPress with powerful, professional and intuitive fields.",
"metabolism/acf-extensions": "Component extension for ACF",
"wpackagist-plugin/classic-editor": "Restores the previous (« classic ») WordPress editor and the « Edit Post » screen.",
"wpackagist-plugin/wp-smartcrop": "Set the 'focal point' of any image, right from the media library",
"wpackagist-plugin/multisite-language-switcher": "Add multilingual support using a WordPress multisite",
"wpackagist-plugin/wordpress-seo": "The favorite WordPress SEO plugin of millions of users worldwide!"
},
"extra": {
"post-package-install": {
"create": {
"metabolism/wordpress-bundle": {
"web/uploads": 775,
"web/wp-bundle/upgrade": 775,
"web/wp-bundle/languages": 775,
"config/acf-json": 775
}
},
"copy": {
"metabolism/wordpress-bundle": {
"tools/wp-config.php": "web/wp-config.php",
"samples/.htaccess": "web/.htaccess",
"samples/config/wordpress.yml": "config/wordpress.yml",
"samples/service/Context.php": "src/Service/Context.php",
"samples/controller/BlogController.php": "src/Controller/BlogController.php"
}
},
"symlink": {
"metabolism/wordpress-bundle": {
"README.md": "doc/wordpress-bundle.md",
"tools/mu-plugins/wp-bundle.php": "web/wp-bundle/mu-plugins/wp-bundle.php"
}
}
},
"branch-alias": {
"dev-1.3.x": "1.3.x-dev",
"dev-1.4.x": "1.4.x-dev"
}
},
"autoload" : {
"psr-4" : {
"Metabolism\\WordpressBundle\\" : "src/"
}
}
}