Skip to content

Commit 1c3740f

Browse files
author
Renato Marinho
committed
Laravel Blade Minify
0 parents  commit 1c3740f

File tree

7 files changed

+3307
-0
lines changed

7 files changed

+3307
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.idea
2+
vendor

composer.json

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
{
2+
"name": "renatomarinho/laravel-blade-minify",
3+
"description": "Laravel Blade Minify HTML",
4+
"keywords": [
5+
"laravel",
6+
"blade",
7+
"minify",
8+
"html"
9+
],
10+
"license": "MIT",
11+
"authors": [
12+
{
13+
"name": "Renato Marinho",
14+
"email": "renato.marinho@s2move.com"
15+
}
16+
],
17+
"require": {
18+
"php": ">=5.6",
19+
"illuminate/support": "5.3.x|5.4.x|5.5.x"
20+
},
21+
"autoload": {
22+
"psr-4": {
23+
"RenatoMarinho\\LaravelBladeMinify\\": "src/"
24+
}
25+
},
26+
"autoload-dev": {
27+
"psr-4": {
28+
"RenatoMarinho\\LaravelBladeMinify\\Test\\": "tests"
29+
}
30+
},
31+
"require-dev": {
32+
"phpunit/phpunit": "^4.8|^5.2",
33+
"orchestra/testbench": "3.x",
34+
"squizlabs/php_codesniffer": "^2.3"
35+
},
36+
"scripts": {
37+
"test": "phpunit",
38+
"check-style": "phpcs -p --standard=PSR2 src/",
39+
"fix-style": "phpcbf -p --standard=PSR2 src/"
40+
},
41+
"minimum-stability": "dev",
42+
"prefer-stable": true
43+
}

0 commit comments

Comments
 (0)