-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
109 lines (107 loc) · 3.9 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
108
109
{
"name": "lin3s/wordpress-standard",
"type": "project",
"description": "The \"Wordpress Standard Edition\" distribution in the LIN3S way",
"keywords": [
"lin3s",
"wordpress",
"cms"
],
"license": "MIT",
"authors": [
{
"name": "LIN3S",
"email": "info@lin3s.com",
"homepage": "https://lin3s.com"
}
],
"require": {
"php": "^7.1",
"johnpbloch/wordpress": "^4.9",
"koodimonni-language/fi": "^4.9",
"koodimonni-language/es_Es": "^4.9",
"lin3s/distribution": "^4.3",
"lin3s/wp-foundation": "^1.7",
"wpackagist-plugin/wordpress-seo": "^7.0",
"wpackagist-plugin/wp-api-yoast-meta": "^1.2",
"wpackagist-plugin/wp-smushit": "^2.7",
"wpackagist-plugin/w3-total-cache": "^0.9.6",
"wpackagist-theme/twentyseventeen": "^1.4"
},
"require-dev": {
"lin3s/cs": "^0.7.3",
"symfony/var-dumper": "^4.0",
"wpackagist-plugin/debug-bar": "~0.9",
"wpackagist-plugin/monkeyman-rewrite-analyzer": "^1.0",
"wpackagist-plugin/plugin-profiler": "^1.1.2",
"wpackagist-plugin/query-monitor": "^2.17"
},
"suggest": {
"advanced-custom-fields-pro": "Non-free powerful plugin that allows to create custom fields in an easy way",
"lin3s/wp-routing": "It allows to manage the WP template hierarchy in Symfony style",
"lin3s/wp-symfony-form": "It allows to create forms with Symfony form component",
"sitepress-multilingual-cms": "It allows to implement the multilingual in an easy way",
"timber/timber": "It allows to implement the WordPress's views with Twig template engine instead of plain PHP",
"wpackagist-plugin/acf-to-rest-api": "Required if you're using ACF and you need to consume this data from Rest API",
"wpackagist-plugin/categories-images": "It allows to assign easily images to categories",
"wpackagist-plugin/members": "It allows to manage the user privileges",
"wpackagist-plugin/restrict-author-posting": "It provides more options to restrict post publications",
"wpml-media": "It allows to implement the multilingual in an easy way",
"wpml-string-translation": "It allows to implement the multilingual in an easy way"
},
"extra": {
"dropin-paths": {
"languages/": ["vendor:koodimonni-language"],
"languages/plugins/": ["vendor:koodimonni-plugin-language"],
"languages/themes/": ["vendor:koodimonni-theme-language"]
},
"incenteev-parameters": {
"file": ".lin3s_cs.yml",
"dist-file": ".lin3s_cs.yml.dist"
},
"installer-paths": {
"plugins/{$name}/": [
"type:wordpress-plugin"
],
"themes/{$name}/": [
"type:wordpress-theme"
],
"mu-plugins/{$name}/": [
"type:wordpress-muplugin"
]
},
"scripts-dev": {
"post-install-cmd": [
"@lin3scs-scripts"
],
"post-update-cmd": [
"@lin3scs-scripts"
]
},
"wordpress-install-dir": "core"
},
"autoload": {
"psr-4": {
"App\\": "src/App/"
}
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "composer",
"url": "https://wp-languages.github.io"
}
],
"scripts": {
"lin3scs-scripts": [
"LIN3S\\Distribution\\Php\\Composer\\Wordpress::installRequiredFiles",
"LIN3S\\CS\\Composer\\Hooks::buildDistFile",
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"LIN3S\\CS\\Composer\\Hooks::addHooks",
"LIN3S\\CS\\Composer\\Hooks::addFiles"
]
}
}