rixbeck/boltstack-webroot
There is no license information available for the latest version (2.0) of this package.
2.0
2014-09-20 19:23 UTC
Requires
- bolt/bolt: dev-master
Requires (Dev)
- rixbeck/bolt-tasks: dev-master
README
##Bolt Stack
Bolt stack is a fork of bolt-composer-webroot skeleton for ensuring some basement of building a stackable aplication on top of Bolt.
###Install Bolt as a Web-Root Composer Package
This skeleton installs the Bolt app outside of the web root, with a public directory to handle public assets.
To install:
composer create-project rixbeck/boltstack-webroot mybolt-project
Create a mapping in your web/index.php
for app stacking similar like this:
... $map = array( '/foo' => Stack\lazy(function () { $app = new Foo\Application(); $app->initialize(); return $app; }), '/bar' => Stack\lazy(function () { $app = new Bar\Application(); $app->initialize(); return $app; }) ); ...
Add your dependant modules in composer.json
require section
"require": { ... "vendorname/foo": "*", "vendorname/bar": "*" ...
Then navigate to /bolt
and you should see the first user setup screen.