Ready to help you quickly write simple well designed web applications and APIs.
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.
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.
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/"
}
}
The pocoPHP framework is open-sourced software licensed under the MIT license.