lud / press
There is no license information available for the latest version (v0.8.0) of this package.
A simple publishing library
v0.8.0
2015-02-27 11:08 UTC
Requires
- php: >=5.4.0
- amaury/skrivmarkup: dev-classic-linebreaks
- leeoniya/dump-r: dev-master
- michelf/php-markdown: ~1.4.1
- shark/simple_html_dom: dev-master
- symfony/finder: 2.6.*@dev
- symfony/yaml: ~2.5
- twig/twig: ~1.0
- zaininnari/html-minifier: *
README
Press is a blogging library targeting Laravel 5 with a focus on blogging speed, with automagic pagination and page caching.
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']);