-
Notifications
You must be signed in to change notification settings - Fork 166
/
composer.json
50 lines (50 loc) · 1.23 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
{
"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": "^8.1",
"twig/twig": "~3.12",
"illuminate/support": "^9|^10|^11",
"illuminate/view": "^9|^10|^11"
},
"require-dev": {
"ext-json": "*",
"laravel/framework": "^9|^10|^11",
"mockery/mockery": "^1.3.1",
"phpunit/phpunit": "^8.5.8 || ^9.3.7",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": {
"TwigBridge\\": "src",
"TwigBridge\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.14-dev"
},
"laravel": {
"providers": [
"TwigBridge\\ServiceProvider"
],
"aliases": {
"Twig": "TwigBridge\\Facade\\Twig"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}