lud/press

A simple publishing library
24
Install
composer require lud/press
Latest Version:v0.8.0
PHP:>=5.4.0
License:MIT
Last Updated:Sep 29, 2015
Links: GitHub  ·  Packagist
Maintainer: lud

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