-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
42 lines (42 loc) · 1.04 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
{
"name": "proai/laravel-handlebars",
"description": "A Laravel wrapper for LightnCandy for using the Handlebars (and Mustache) template engine.",
"keywords": [
"laravel",
"lightncandy",
"handlebars",
"mustache",
"template engine"
],
"homepage": "http://github.com/proai/laravel-handlebars",
"license": "MIT",
"authors": [
{
"name": "Markus J. Wetzel",
"email": "[email protected]"
},
{
"name": "Manuel Wieser",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"illuminate/view": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"zordius/lightncandy": "1.2.*"
},
"require-dev": {
"orchestra/testbench": "^5.3|^8.0|^9.0",
"phpunit/phpunit": "^9.2|^10.5"
},
"autoload": {
"psr-4": {
"ProAI\\Handlebars\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}