forked from rcrowe/TwigBridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.01 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": "rcrowe/twigbridge",
"description": "Adds the power of Twig to Laravel",
"keywords": ["laravel", "twig"],
"license": "MIT",
"authors": [
{
"name": "Rob Crowe",
"email": "[email protected]"
},
{
"name": "Barry vd. Heuvel",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"twig/twig": "~1.15",
"illuminate/support": "~4.1",
"illuminate/view": "~4.1"
},
"require-dev": {
"laravel/framework": "~4.2.0",
"mockery/mockery": "~0.9.0",
"phpunit/phpunit": "~4.0",
"squizlabs/php_codesniffer": "~1.5",
"satooshi/php-coveralls": "~0.6"
},
"suggest": {
"twig/extensions": "~1.0"
},
"autoload": {
"psr-4": {
"TwigBridge\\": "src",
"TwigBridge\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.6-dev"
}
}
}