lollipop php
1.0.0
A slim and very flexible framework for PHP
You can use Lollipop when you're creating a simple and powerful web application. Lollipop removed the weight of large frameworks. Also Lollipop was created to offer cool functionalities and speed.
Configure .htaccess. Use below code as the default for your
.htaccessOr see Appogato for routing using Lollipop
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ index.php [QSA,L]A simple Hello World Page
<?php
require('/path/to/lollipop-php/autoload.php');
// Your index page
LollipopHTTPRouter::get('/', function($request, $response) {
return $response->set('Hello World!');
});Get the latest version of Lollipop-PHP framework from our Git repository hosted on GitHub
git clone https://github.com/jabernardo/lollipop-php.git lollipop-phpor get it via composer
composer require "jabernardo/lollipop-php"and start the development of your projects.
See documentation here.
The Lollipop-PHP framework is open-sourced software licensed under the MIT license.