popphp/popphp-skeleton

Skeleton Application for Pop PHP Framework

4.0.1 2024-03-05 15:28 UTC

This package is auto-updated.

Last update: 2024-04-05 15:43:48 UTC


README

Join the chat at https://popphp.slack.com Join the chat at https://discord.gg/TZjgT74U7E

Overview

This is a basic skeleton application for the Pop PHP Framework that provides a simple base application on which you can build your own applications.

Top

Install

Create a new project with it:

$ composer create-project popphp/popphp-skeleton project-folder

Or clone the repository and install it:

$ composer install

Once installed, the main web access point is at public/index.php.

Top

Basic Usage

Start the web server by running:

$ ./kettle serve

And then you can access the web application at these routes:

http://localhost:8000/
http://localhost:8000/hello
http://localhost:8000/hello/name

You should see the main home page and "hello" page, respectively. You can swap out "name" for your name to see the result on the page.

Top

Notes

  • The skeleton application uses the pop-view component to create and render the views.
  • The web application is utilizing the pop-http component to leverage the HTTP request and response objects within the controller object.

Top