| Package Data | |
|---|---|
| Maintainer Username: | lud |
| Maintainer Contact: | ludovic@demblans.com (lud) |
| Package Create Date: | 2015-03-06 |
| Package Last Update: | 2015-09-29 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-11-06 15:02:46 |
| Package Statistics | |
|---|---|
| Total Downloads: | 24 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 0 |
| Total Watchers: | 2 |
| Total Forks: | 0 |
| Total Open Issues: | 0 |
Press is a blogging library targeting Laravel 5 with a focus on blogging speed, with automagic pagination and page caching.
<?php
\Press::SetRoutes();
Route::controllers([
'auth' => 'App\Http\Controllers\Auth\AuthController',
]);
\Press::listRoute('tag/{tag}', 'tag|sort', ['as' => 'press.tag']);
\Press::listRoute('/', 'dir:articles|sort', ['as' => 'press.home', 'view' => '_::home']);