https://github.com/krasimir/fabrico
PHP Micro Framework
https://github.com/krasimir/fabrico
Last synced: 6 months ago
JSON representation
PHP Micro Framework
- Host: GitHub
- URL: https://github.com/krasimir/fabrico
- Owner: krasimir
- Created: 2011-12-04T16:05:50.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2013-05-28T21:16:47.000Z (over 12 years ago)
- Last Synced: 2024-04-11T07:12:25.038Z (over 1 year ago)
- Language: PHP
- Homepage:
- Size: 5.44 MB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Fabrico
Fabrico is PHP micro framework. It's purpose is to provide really basic functionalities for building web applications. During the development, the very first priority was to contain modules which are independent. I.e. there are not tied to any other classes or modules. Simple classes for a specific job.
## Modules
- [Installer](https://github.com/krasimir/fabrico/tree/master/lib/Installer)
- [Autoloader](https://github.com/krasimir/fabrico/tree/master/lib/Autoloader)
- [Router](https://github.com/krasimir/fabrico/tree/master/lib/Router)
- [Template engine](https://github.com/krasimir/fabrico/tree/master/lib/View)
- [Database adapters](https://github.com/krasimir/fabrico/tree/master/lib/DBAdapters)
- [Error handler](https://github.com/krasimir/fabrico/tree/master/lib/ErrorHandler)
- [Application mode](https://github.com/krasimir/fabrico/tree/master/lib/AppMode)
- [Session manager](https://github.com/krasimir/fabrico/tree/master/lib/SessionManager)
- [Former](https://github.com/krasimir/fabrico/tree/master/lib/Former)## Installation
The easier way is to download the files directly and check the documentation of every of the modules.
Fabrico is also available for *composer*:
{
"require": {
"krasimir/fabrico": "dev-master"
}
}