-
Notifications
You must be signed in to change notification settings - Fork 35
/
composer.json
56 lines (55 loc) · 1.68 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
51
52
53
54
55
56
{
"name": "radic/blade-extensions",
"description": "Laravel package providing additional Blade extensions: foreach (with $loop data like twig), break, continue, set,array (multiline), etc",
"homepage": "https://github.com/RobinRadic/blade-extensions",
"keywords": [
"loop",
"extensions",
"blade",
"laravel"
],
"license": "MIT",
"authors": [
{
"name": "Robin Radic",
"email": "robin@radic.nl",
"role": "Package Author/Developer"
}
],
"require": {
"php": ">=5.5.9",
"illuminate/filesystem": "~5.0|~6.0|~7.0|~8.0",
"illuminate/contracts": "~5.0|~6.0|~7.0|~8.0",
"illuminate/support": "~5.0|~6.0|~7.0|~8.0",
"illuminate/view": "~5.0|~6.0|~7.0|~8.0",
"composer/semver": "~1.4"
},
"suggest": {
"raveren/kint": "Improved @dump output (1.0.*)",
"cebe/markdown": "Enables the use of @markdown directives (~1.5)",
"matthiasmullie/minify": "Enables the use of @minify('css') or @minify('js') directive (~1.3)",
"zaininnari/html-minifier": "Improves the @minify('html') directive"
},
"require-dev": {
"laradic/testing": "~1.0.4",
"mockery/mockery": "~0.9|~1.0",
"cebe/markdown": "~1.1",
"matthiasmullie/minify": "~1.3",
"zaininnari/html-minifier":"~0.4"
},
"autoload": {
"psr-4": {
"Radic\\BladeExtensions\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Radic\\Tests\\BladeExtensions\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "7.4.x-dev"
}
}
}