forked from mathmarques/Smarty-View
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
34 lines (34 loc) · 937 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": "scorninpc/slim-smarty-view",
"version": "2.0.6",
"type": "library",
"description": "Slim Framework 4 view helper built on top of the Smarty templating component",
"keywords": ["slim","framework","view","template","smarty","slim 4"],
"license": "MIT",
"authors": [
{
"name": "Bruno Gonçalves",
"email": "[email protected]",
"homepage": "https://andor.com.br"
},
{
"name": "Matheus Marques",
"email": "[email protected]",
"homepage": "http://matheusmarques.com"
}
],
"require": {
"php": "^7.3 || ^8.0",
"smarty/smarty": "^4.0",
"slim/slim": "^4.0",
"php-di/php-di": "^6.3"
},
"require-dev": {
"phpunit/phpunit": "^8.5.13 || ^9.3.8"
},
"autoload": {
"psr-4": {
"Slim\\Views\\": "src"
}
}
}