-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
43 lines (42 loc) · 1 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
{
"name": "pafnuty/laravel-fenom",
"description": "Fenom Template Engine for Laravel 5",
"keywords": ["laravel", "fenom", "template", "view"],
"authors": [
{
"name": "Max Kostjukevich",
"email": "[email protected]"
},
{
"name": "Pavel Belousov",
"email": "[email protected]"
},
{
"name": "Ivan Shalganov",
"email": "[email protected]"
}
],
"license": "MIT",
"require": {
"php": ">=5.4.0",
"fenom/fenom": "2.*",
"illuminate/support": "5.*",
"illuminate/view": "5.*",
"illuminate/config": "5.*"
},
"require-dev": {
"phpunit/phpunit": "*",
"satooshi/php-coveralls": "dev-master"
},
"autoload": {
"psr-4": {
"Pafnuty\\Fenom\\": "src/Fenom"
}
},
"autoload-dev": {
"files": [
"tests/TestCase.php"
]
},
"minimum-stability": "stable"
}