heinthanth / bare

Simple, lightweight modern PHP without framework

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bare Framework.

License: MIT

Simple, lightweight modern PHP without framework. I just put some open-source packages together to make a minimal micro-framework.
I accepted challenge from https://kevinsmith.io/modern-php-without-a-framework

Documentation

Will document later. You'll have to know about PSR (PHP Standards Recommendations).

Known Issues

Because of using Laravel Eloquent ORM, project was mixed with some of Laravel's Facade classes. But, they won't work.
I mean there's a Hash class, but if you try Hash::make("Hello"), then, it'll throw Exception about Facade root. Sorry for such inconvenience.

Installation

Currently, under development. Simple git clone will help you!

git clone https://github.com/heinthanth/bare
cd bare
composer install
cp .env.example .env
php -S localhost:8000 -t public

This will make this repo alive at http://localhost:8000

Core Features

No feature out of the box! - with just router, view engine and other stuffs.

Credits

License

The Bare Framework is licensed under the MIT license. See License for more information.

About

Simple, lightweight modern PHP without framework

License:MIT License


Languages

Language:PHP 99.5%Language:Shell 0.5%