An open API service indexing awesome lists of open source software.

https://github.com/jabernardo/lollipop-php

A slim and very flexible framework for PHP
https://github.com/jabernardo/lollipop-php

php-framework php-library php7 web web-framework

Last synced: 5 months ago
JSON representation

A slim and very flexible framework for PHP

Awesome Lists containing this project

README

          

# [Lollipop](http://github.com/jabernardo/lollipop-php)
![Travis: Build Status](https://travis-ci.org/jabernardo/lollipop-php.svg?branch=master "Travis: Build Status")
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

A slim and very flexible framework for PHP

###### IS LOLLIPOP FOR YOU?
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.

###### IT's EASY!

> Configure [.htaccess](http://www.htaccess-guide.com/).
Use below code as the default for your ```.htaccess```
Or see [Appogato](https://github.com/jabernardo/appogato) for routing using
[Lollipop](https://github.com/jabernardo/lollipop-php)

```apache
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ index.php [QSA,L]
```

A simple `Hello World` Page

```php
set('Hello World!');
});

```

###### DOWNLOAD
Get the latest version of Lollipop-PHP framework from our Git repository hosted on GitHub
```bash
git clone https://github.com/jabernardo/lollipop-php.git lollipop-php
```
or get it via ```composer```
```bash
composer require "jabernardo/lollipop-php"
```
and start the development of your projects.

###### RESOURCES

See documentation [here](https://github.com/jabernardo/lollipop-php/wiki).

## License

The Lollipop-PHP framework is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT).