forked from PrinsFrank/IndentingPersistentBladeCompiler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.16 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.16 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
{
"name": "prinsfrank/indenting-persistent-blade-compiler",
"description": "Extension on the Laravel Blade compiler that persists indenting when using replaced content in blade templates.",
"keywords": ["laravel", "blade", "compiler", "indenting"],
"authors": [
{
"name": "Frank Prins",
"email": "prinsfrank@vuln.one"
}
],
"license": "MIT",
"extra": {
"laravel": {
"providers": [
"PrinsFrank\\IndentingPersistentBladeCompiler\\IndentedViewServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"PrinsFrank\\IndentingPersistentBladeCompiler\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PrinsFrank\\IndentingPersistentBladeCompiler\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.2",
"ext-json": "*",
"illuminate/support": "^5.8 || ^6.0",
"illuminate/view": "^5.8 || ^6.0"
},
"require-dev": {
"phpunit/phpunit": "^8.2",
"mockery/mockery": "^1.2"
},
"scripts": {
"post-install-cmd": "php artisan view:clear"
}
}