https://github.com/matthewbdaly/unframework
Unframework is not a framework. It's an opinionated collection of off-the-shelf PHP components and some very basic glue to stick them together for cases where you don't want to use a full framework
https://github.com/matthewbdaly/unframework
Last synced: 3 months ago
JSON representation
Unframework is not a framework. It's an opinionated collection of off-the-shelf PHP components and some very basic glue to stick them together for cases where you don't want to use a full framework
- Host: GitHub
- URL: https://github.com/matthewbdaly/unframework
- Owner: matthewbdaly
- License: mit
- Created: 2018-04-10T20:17:14.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2020-05-02T10:36:25.000Z (about 5 years ago)
- Last Synced: 2024-04-14T04:02:30.988Z (about 1 year ago)
- Language: PHP
- Size: 132 KB
- Stars: 3
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# unframework
[](https://travis-ci.org/matthewbdaly/unframework)
[](https://coveralls.io/github/matthewbdaly/unframework?branch=master)
Unframework is not a framework. It's an opinionated collection of off-the-shelf PHP components and some very basic glue to stick them together for cases where you don't want to use a full framework.It's also a learning experience in how to build a small framework from scratch. It doesn't contain everything you need, just the basics such as:
* Twig templating
* Caching
* Doctrine ORM
* Logging
* Routing
* Session support
* A basic interactive shellInstallation
------------```bash
composer create-project --prefer-dist matthewbdaly/unframework myapp
```