Luthier-CI: Improved routing + middleware for CodeIgniter 3 |
Hi!
I want to share my recently rewritten project: it's called Luthier-CI. What is Luthier-CI? Luthier-CI is a CodeIgniter plugin that enables Laravel-like routing and introduces the concept of Middleware in our applications. Key features
With Luthier-CI we can, for example, write this: PHP Code: Route::group('catalog', function(){ Instead this: PHP Code: $route['catalog/cars/(:any)']['GET'] = 'CarsController/catalog/$1'; ... or use an anonymous function instead a controller: PHP Code: Route::get('test', function(){ ... or even perform the same action with all routes using a middleware: PHP Code: Route::middleware(function(){ More information (Documentation, installation instructions, etc.) View Luthier-CI on GitHub It is a somewhat complex project so any suggestion, opinion, or even donation is welcome! Tested in PHP 5/7 and CodeIgniter 3.1.7 / 3.1.8 (apparently everything works ![]() |
Messages In This Thread |
Luthier-CI: Improved routing + middleware for CodeIgniter 3 - by andersonsalas - 04-17-2018, 09:52 PM
RE: Luthier-CI: Improved routing + middleware for CodeIgniter 3 - by andersonsalas - 05-13-2018, 07:17 PM
RE: Luthier-CI: Improved routing + middleware for CodeIgniter 3 - by Krycek - 05-13-2018, 11:57 PM
RE: Luthier-CI: Improved routing + middleware for CodeIgniter 3 - by andersonsalas - 06-25-2018, 01:10 PM
RE: Luthier-CI: Improved routing + middleware for CodeIgniter 3 - by jvandemerwe - 02-03-2019, 03:11 AM
RE: Luthier-CI: Improved routing + middleware for CodeIgniter 3 - by takielias - 09-05-2020, 08:45 AM
|