polus / polus
base for my version of mvc
Installs: 44
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/polus/polus
Requires
- php: >=7.0.0
- aura/di: 2.*
- aura/router: ~3.0
- filp/whoops: ^2.1
- franzl/whoops-middleware: ^0.4
- relay/middleware: ~1.0
- relay/relay: ~1.0
- zendframework/zend-diactoros: ~1.0
README
Polus is a micro framework built on top off Relay and Aura components.
Installing Polus
You will need Composer to install Polus.
Pick a project name, and use Composer to create it with Radar; here we create
one called example-project:
composer create-project polus/project example-project
Confirm the installation by changing into the project directory and starting the built-in PHP web server:
cd example-project
php -S localhost:8080 -t public/
You can then browse to http://localhost:8080/ and see simple html output:
Welcome to polus
127.0.0.1