toadsuck/skeleton

Skeleton Application for Toadsuck

1.0.0 2014-04-25 03:33 UTC

This package is not auto-updated.

Last update: 2024-03-11 23:39:58 UTC


README

Skeleton PHP-MVC application implementing the components from the Toadsuck Project.

Total Downloads Latest Stable Version

Use this as a clean starting point in your Toadsuck-based projects.

Briefly, the Toadsuck Project bundles the following components and lets them work together to form the basic building blocks of a PHP application:

Read the docs at https://github.com/toadsuck/toadsuck-core/blob/master/README.md

Installation

Installation of this package is easy with Composer. If you aren't familiar with the Composer Dependency Manager for PHP, you should read this first.

If you don't already have Composer installed (either globally or in your project), you can install it like this:

$ curl -sS https://getcomposer.org/installer | php

Then you can create a new Toadsuck Skeleton project:

$ composer create-project toadsuck/skeleton your-project-name --stability=dev

The default base namespace of your new app skelton is Toadsuck\Skeleton. You can easily change the namespace in all files using the provided install.php after downloading this project.

php install.php "Your\AppNamespace"

Of course, replace Your\AppNameSpace in the above command with whatever you want to use as your base namespace.

IMPORTANT : Make sure your new namespace is quoted in the install command as shown above.