forked from ytake/Laravel.Smarty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.08 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
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "ytake/laravel-smarty",
"description": "Smarty template engine for Laravel and Lumen",
"keywords": [
"laravel",
"smarty",
"template",
"view",
"cache",
"lumen"
],
"authors": [
{
"name": "Yuuki Takezawa",
"email": "[email protected]"
}
],
"license": "MIT",
"require": {
"php": ">=5.4.0",
"illuminate/support": "~5.0",
"illuminate/view": "~5.0",
"illuminate/config": "~5.0",
"illuminate/console": "~5.0",
"illuminate/events": "~5.0",
"smarty/smarty": "~3.0"
},
"require-dev": {
"predis/predis": "~1.0",
"symfony/framework-bundle": "~2.0",
"symfony/console": "~2.0",
"phpunit/phpunit": "~4.0",
"mockery/mockery": "*",
"satooshi/php-coveralls": "*"
},
"suggest": {
"ext-memcached": "memcached Template Cache Driver",
"predis/predis": "Redis Template Cache Driver"
},
"autoload": {
"psr-4": {
"Ytake\\LaravelSmarty\\": "src"
}
},
"autoload-dev": {
"files": [
"tests/SmartyTestCase.php"
]
},
"minimum-stability": "stable"
}