Fwk\Core Skeleton Application
This is a skeleton Application for Fwk\Core.
Install it using Composer to get started:
``` sh
$ php composer.phar create-project fwk/skeleton path/to/install --prefer-dist --dev dev-master, (*1)
Now cd to path/to/install and edit the configuration file:
``` sh
$ cp app/config.ini-dist app/config.ini
What's included
Cache directory
Assetic and Twig may require a directory to put cache files. By default, it's configured as ./cache.
You can initialize this directory by typing:, (*2)
sh
$ mkdir cache && chmod 777 cache, (*3)
You can also change this directory path in ./app/config.ini., (*4)
Hack on
Now point your browser to your http server: http://localhost/~username/webapp/public/index.php/ and you're set! Happy development :), (*5)