This package is still under construction... !!
but you can test it running composer create-project pongocms/start <your_project_folder>
Find your /app/config/app.php
and add to the providers
section both the PongoServiceProvider
and the SiteServiceProvider
// app/config/app.php
'providers' => array(
...
'Pongo\Cms\PongoServiceProvider',
'Pongo\Site\SiteServiceProvider',
);
Create a new database (supported by Laravel) and than set your connection data under /app/config/database.php
file.
(maybe an automated installer in the future...)
Open a terminal and run php artisan pongo:setup
You are almost ready to go!
Rise your local webserver up with php artisan serve
and point your browser to http://localhost:8000/cms
Your first (admin) account is admin/admin
.
Happy Pongo!
(...and always remember that this project is in a super-early stage - do not use in production!!)