Skip to content

Commit c389f40

Browse files
committed
Update readme.md
1 parent 248a9fa commit c389f40

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

README.md

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,21 @@
33
</p>
44

55
<p align="center">
6-
<a href="https://gitscrum.com"><img src="https://site.gitscrum.com/badges/project.svg?project=gitscrum/bulls-eye-gitscrum-37" alt="GitScrum"></a>
7-
<a href="https://packagist.org/packages/renatomarinho/laravel-page-speed"><img src="https://poser.pugx.org/renatomarinho/laravel-page-speed/license" alt="License"></a>
6+
<a href="https://travis-ci.org/renatomarinho/laravel-page-speed"><img src="https://travis-ci.org/renatomarinho/laravel-page-speed.svg?branch=master" alt="Build Status"></a>
87
<a href="https://packagist.org/packages/renatomarinho/laravel-page-speed"><img src="https://poser.pugx.org/renatomarinho/laravel-page-speed/version" alt="Latest Stable Version"></a>
98
<a href="https://packagist.org/packages/renatomarinho/laravel-page-speed"><img src="https://poser.pugx.org/renatomarinho/laravel-page-speed/downloads" alt="Total Downloads"></a>
9+
<a href="https://packagist.org/packages/renatomarinho/laravel-page-speed"><img src="https://poser.pugx.org/renatomarinho/laravel-page-speed/license" alt="License"></a>
1010
</p>
1111

1212
# Laravel Page Speed
1313

14-
### Simple package to minify HTML output on demand which results in a 35%+ optimization.
14+
Simple package to minify HTML output on demand which results in a 35%+ optimization. Laravel Page Speed was created by [Renato Marinho][link-author], and currently maintained by [João Roberto P. Borges][link-maintainer], [Lucas Mesquita Borges][link-maintainer-2] and [Renato Marinho][link-author].
1515

1616
## Installation
1717

1818
> **Requires:**
19-
- **[PHP 7.1.3+](https://php.net/releases/)**
20-
- **[Laravel 5.5+](https://github.com/laravel/laravel)**
19+
- **[PHP 7.2.5+](https://php.net/releases/)**
20+
- **[Laravel 6.0+](https://github.com/laravel/laravel)**
2121

2222
You can install the package via composer:
2323

@@ -44,8 +44,8 @@ protected $middleware = [
4444
\RenatoMarinho\LaravelPageSpeed\Middleware\ElideAttributes::class,
4545
\RenatoMarinho\LaravelPageSpeed\Middleware\InsertDNSPrefetch::class,
4646
\RenatoMarinho\LaravelPageSpeed\Middleware\RemoveComments::class,
47-
\RenatoMarinho\LaravelPageSpeed\Middleware\TrimUrls::class,
48-
\RenatoMarinho\LaravelPageSpeed\Middleware\RemoveQuotes::class,
47+
//\RenatoMarinho\LaravelPageSpeed\Middleware\TrimUrls::class,
48+
//\RenatoMarinho\LaravelPageSpeed\Middleware\RemoveQuotes::class,
4949
\RenatoMarinho\LaravelPageSpeed\Middleware\CollapseWhitespace::class, // Note: This middleware invokes "RemoveComments::class" before it runs.
5050
\RenatoMarinho\LaravelPageSpeed\Middleware\DeferJavascript::class,
5151
]
@@ -89,7 +89,7 @@ The **InsertDNSPrefetch::class** filter Injects <link rel="dns-prefetch" href="/
8989

9090
DNS resolution time varies from <1ms for locally cached results, to hundreds of milliseconds due to the cascading nature of DNS. This can contribute significantly towards total page load time. This filter reduces DNS lookup time by providing hints to the browser at the beginning of the HTML, which allows the browser to pre-resolve DNS for resources on the page.
9191

92-
### \RenatoMarinho\LaravelPageSpeed\Middleware\TrimUrls::class,
92+
### ⚠️ \RenatoMarinho\LaravelPageSpeed\Middleware\TrimUrls::class,
9393

9494
The **TrimUrls::class** filter trims URLs by resolving them by making them relative to the base URL for the page.
9595

@@ -162,10 +162,8 @@ $ composer test
162162

163163
Please see [CONTRIBUTING](CONTRIBUTING.md) for details.
164164

165-
## Credits
165+
## Contributors
166166

167-
- [Renato Marinho][link-author]
168-
- [João Roberto P. Borges][link-maintainer]
169167
- [Caneco](https://twitter.com/caneco) (for the logo)
170168
- [All Contributors][link-contributors]
171169

@@ -181,6 +179,7 @@ The MIT License (MIT). Please see [License File](LICENSE.md) for more informatio
181179
[link-after]: https://i.imgur.com/IKWKLkL.png
182180
[link-author]: https://github.com/renatomarinho
183181
[link-maintainer]: https://github.com/joaorobertopb
182+
[link-maintainer-2]: https://github.com/lucasMesquitaBorges
184183
[link-contributors]: ../../contributors
185184
[link-file-download]: https://laravel.com/docs/6.0/responses#file-downloads
186185
[link-package-discovery]: https://laravel.com/docs/6.0/packages#package-discovery

0 commit comments

Comments
 (0)