-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
34 lines (34 loc) · 1008 Bytes
/
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
{
"name": "wanze/template-engine-factory",
"type": "processwire-module",
"extra": {
"installer-name": "TemplateEngineFactory"
},
"description": "Provides ProcessWire integration for various template engines such as Twig.",
"keywords": [ "template-engine", "processwire"],
"homepage": "https://github.com/wanze/TemplateEngineFactory",
"license": "MIT",
"authors": [
{
"name": "Stefan Wanzenried",
"homepage": "https://github.com/wanze",
"email": "stefan.wanzenried@gmail.com"
},
{
"name": "TemplateEngineFactory Contributors",
"homepage": "https://github.com/wanze/TemplateEngineFactory/contributors"
}
],
"require": {
"php": ">=7.0",
"composer/installers": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "^6"
},
"autoload-dev": {
"psr-4": {
"TemplateEngineFactory\\Test\\": "tests/src/"
}
}
}