-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
39 lines (39 loc) · 1.2 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
{
"name": "joomlatools/framework",
"type": "joomlatools-extension",
"license": "GPL-3.0-only",
"description": "Joomlatools Framework is an open-source extension framework (for Joomla)",
"keywords": [
"joomla",
"extension",
"framework",
"koowa"
],
"homepage": "https://github.com/joomlatools/joomlatools-framework",
"authors": [
{
"name": "Johan Janssens",
"email": "[email protected]",
"homepage": "http://about.me/johanjanssens"
},
{
"name": "Timble",
"email": "[email protected]",
"homepage": "http://www.timble.net"
}
],
"require": {
"php": ">=7.3",
"ext-mbstring": "*",
"joomlatools/composer": "*"
},
"suggest": {
"twig/twig": "Allows building templates using the Twig template engine",
"mustache/mustache": "Allows building logic less templates using the Mustache syntax",
"erusev/parsedown-extra" : "Allows using Markddown in templates",
"symfony/yaml": "Allows using Yaml config files"
},
"extra": {
"manifest": "code/plugins/system/joomlatools/joomlatools.xml"
}
}