forked from rcrowe/TwigBridge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.21 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.21 KB
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
{
"name": "synergitech/twigbridge",
"description": "Adds the power of Twig to Laravel",
"keywords": ["laravel", "twig"],
"license": "MIT",
"authors": [
{
"name": "Synergi Tech",
"homepage": "http://github.com/SynergiTech"
},
{
"name": "Rob Crowe",
"email": "hello@vivalacrowe.com"
},
{
"name": "Barry vd. Heuvel",
"email": "barryvdh@gmail.com"
}
],
"require": {
"php": "^7.2.5|^8.0",
"twig/twig": "^3.0",
"illuminate/support": "^6|^7|^8|^9",
"illuminate/view": "^6|^7|^8|^9"
},
"require-dev": {
"laravel/framework": "^6|^7|^8|^9",
"mockery/mockery": "^1.3.1",
"phpunit/phpunit": "^6.5.14|^7.5.20|^8.5.8|^9.3.7",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": {
"TwigBridge\\": "src",
"TwigBridge\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"TwigBridge\\ServiceProvider"
],
"aliases": {
"Twig": "TwigBridge\\Facade\\Twig"
}
}
}
}