-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·37 lines (37 loc) · 1.06 KB
/
composer.json
File metadata and controls
executable file
·37 lines (37 loc) · 1.06 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
{
"name": "blue-tomato/template-engine-smarty",
"type": "processwire-module",
"extra": {
"installer-name": "TemplateEngineSmarty"
},
"description": "ProcessWire module adding Smarty to the TemplateEngineFactory",
"keywords": [ "smarty-engine", "smarty", "processwire"],
"homepage": "https://github.com/blue-tomato/TemplateEngineSmarty",
"license": "MIT",
"authors": [
{
"name": "Blue Tomato",
"email": "developer@blue-tomato.com",
"homepage": "https://github.com/blue-tomato"
},
{
"name": "TemplateEngineSmarty Contributors",
"homepage": "https://github.com/blue-tomato/TemplateEngineSmarty/contributors"
}
],
"require": {
"php": ">=7.0",
"composer/installers": ">=1.0",
"smarty/smarty": ">=4.1"
},
"autoload-dev": {
"psr-4": {
"TemplateEngineSmarty\\Test\\": "tests/src/"
}
},
"config": {
"allow-plugins": {
"composer/installers": true
}
}
}