nanorocks / pocophp
This package is abandoned and no longer maintained.
No replacement package was suggested.
Minimalist PHP framework based on MVC design pattern inspired by Slim PHP.
v1.0.0
2020-10-12 10:26 UTC
Requires
- php: >=7.1
- bramus/router: ^1.4
- illuminate/container: ^6.15
- illuminate/database: ^6.14
- illuminate/events: ^6.15
- pimple/pimple: ^3.2
- twig/twig: ^3.0
This package is auto-updated.
Last update: 2024-06-11 19:16:05 UTC
README
Ready to help you quickly write simple well designed web applications and APIs.
Installation
It's recommended that you use Composer to install pocoPHP.
$ composer create-project nanorocks/pocophp <project_name>
This will install pocoPHP and all required dependencies. pocoPHP requires PHP 7.1 or newer.
Frameworks skeleton
We demonstrate how to build a URL shortener and how to organize your code. It's easy to follow and to make clean-up. Currently, we don't support full-doc for this framework because it's the first release.
Core packages and autoload
in composer.json
"require": { "twig/twig": "^3.0", "illuminate/database": "^6.14", "pimple/pimple": "^3.2", "bramus/router": "^1.4", "illuminate/events": "^6.15", "illuminate/container": "^6.15" }, "autoload": { "psr-4": { "App\\": "src/" } }
License
The pocoPHP framework is open-sourced software licensed under the MIT license.