Skip to content

Commit

Permalink
Laravel Blade Minify
Browse files Browse the repository at this point in the history
  • Loading branch information
renatomarinho committed Sep 10, 2017
0 parents commit 1c3740f
Show file tree
Hide file tree
Showing 7 changed files with 3,307 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.idea
vendor
43 changes: 43 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
"name": "renatomarinho/laravel-blade-minify",
"description": "Laravel Blade Minify HTML",
"keywords": [
"laravel",
"blade",
"minify",
"html"
],
"license": "MIT",
"authors": [
{
"name": "Renato Marinho",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6",
"illuminate/support": "5.3.x|5.4.x|5.5.x"
},
"autoload": {
"psr-4": {
"RenatoMarinho\\LaravelBladeMinify\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RenatoMarinho\\LaravelBladeMinify\\Test\\": "tests"
}
},
"require-dev": {
"phpunit/phpunit": "^4.8|^5.2",
"orchestra/testbench": "3.x",
"squizlabs/php_codesniffer": "^2.3"
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs -p --standard=PSR2 src/",
"fix-style": "phpcbf -p --standard=PSR2 src/"
},
"minimum-stability": "dev",
"prefer-stable": true
}
Loading

0 comments on commit 1c3740f

Please sign in to comment.