/Pages-Skeleton

Obullo-Pages is a new aspect of MVC in PHP, developed using Laminas components, inspired by the .NET Razor Pages framework.

Primary LanguagePHPBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

Obullo-Pages Skeleton

License

Introduction

This is a skeleton application using the Obullo-Pages. This application is designed to create a new project start with Obullo-Pages.

Installation using Composer

The easiest way to create a new Obullo-Pages project is to use Composer. If you don't have it already installed, then please install as per the documentation.

To create your new Obullo-Pages project:

$ composer create-project obullo/pages-skeleton path/to/install

Once installed, you can test it out immediately using PHP's built-in web server:

$ cd path/to/install
$ php -S 0.0.0.0:8080 -t public

This will start the cli-server on port 8080, and bind it to all network interfaces. You can then visit the site at http://localhost:8080/

  • which will bring up Obullo-Pages welcome page.

Note: The built-in CLI server is for development only.