lud / press by lud

A simple publishing library
22
0
3
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: 2024-04-29 15:08:55
Package Statistics
Total Downloads: 22
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 3
Total Forks: 0
Total Open Issues: 0

PRESS

Press is a blogging library targeting Laravel 5 with a focus on blogging speed, with automagic pagination and page caching.

Code Climate

Routes sample config

<?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']);