2017 © Pedro Peláez
 

project app

Pabana skeleton app

image

pabana/app

Pabana skeleton app

  • Thursday, February 22, 2018
  • by t.forax
  • Repository
  • 2 Watchers
  • 0 Stars
  • 15 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 4 Versions
  • 15 % Grown

The README.md

Pabana Application Skeleton

Introduction

This is a skeleton application using the Pabana Framework. This application is meant to be used as a starting place for those looking to get their feet wet with Pabana., (*1)

Installation using Composer

The easiest way to create a new Pabana project is to use Composer. If you don't have it already installed, then please install as per the documentation., (*2)

To create your new Pabana project:, (*3)

$ composer create-project pabana/app path/to/install

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

$ 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/, (*5)

Note: The built-in CLI server is for development only., (*6)

Web server setup

Apache setup

To setup apache, setup a virtual host to point to the public/ directory of the project and you should be ready to go! It should look something like below:, (*7)

<VirtualHost *:80>
    ServerName app.localhost
    DocumentRoot /path/to/app/public
    <Directory /path/to/app/public>
        DirectoryIndex index.php
        AllowOverride All
        Order allow,deny
        Allow from all
    </Directory>
</VirtualHost>

Note: For WAMPServer you must add Require local in directory tag., (*8)

The Versions

22/02 2018

1.1.0.x-dev

1.1.0.9999999-dev https://pabana.futurasoft.fr

Pabana skeleton app

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework mvc

05/02 2018

dev-master

9999999-dev https://pabana.futurasoft.fr

Pabana skeleton app

  Sources   Download

BSD-3-Clause

The Requires

 

framework mvc

05/02 2018

1.0.0

1.0.0.0 https://pabana.futurasoft.fr

Pabana skeleton app

  Sources   Download

BSD-3-Clause

The Requires

 

framework mvc

05/02 2018

1.0.0.x-dev

1.0.0.9999999-dev https://pabana.futurasoft.fr

Pabana skeleton app

  Sources   Download

BSD-3-Clause

The Requires

 

framework mvc