-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
30 lines (30 loc) · 849 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
{
"name": "tomislav/template-engines",
"description": "Modern PHP application without a framework showcasing 4 different Template Engines",
"type": "project",
"require": {
"php-di/php-di": "^6.2",
"doctrine/annotations": "^1.10",
"relay/relay": "^2.1",
"laminas/laminas-diactoros": "^2.3",
"middlewares/fast-route": "^2.0",
"middlewares/request-handler": "^2.0",
"narrowspark/http-emitter": "^1.0",
"twig/twig": "^3.0",
"smarty/smarty": "^3.1",
"jenssegers/blade": "^1.3"
},
"autoload": {
"psr-4": {
"ExampleApp\\": "src/"
}
},
"scripts": {
"post-install-cmd": [
"mkdir var",
"mkdir var/cache",
"mkdir var/compile",
"mkdir var/config"
]
}
}