fwk / skeleton
Fwk Skeleton Application
dev-master
2014-05-06 12:52 UTC
Requires
- php: >=5.3.0
- fwk/core: dev-master
- fwk/form: dev-master
- monolog/monolog: dev-master
- nitronet/fwk-assetic: dev-master
- nitronet/fwk-twig: dev-master
- symfony/console: dev-master
Requires (Dev)
- filp/whoops: dev-master
This package is not auto-updated.
Last update: 2024-10-26 15:06:39 UTC
README
This is a skeleton Application for Fwk\Core. Install it using Composer to get started:
$ php composer.phar create-project fwk/skeleton path/to/install --prefer-dist --dev dev-master
Now cd to path/to/install and edit the configuration file:
$ cp app/config.ini-dist app/config.ini
What's included
- Directory structure and initial configuration
- Support for Twig (via nitronet/fwk-twig)
- Support for Assetic (via nitronet/fwk-assetic)
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:
$ mkdir cache && chmod 777 cache
You can also change this directory path in ./app/config.ini
.
Hack on
Now point your browser to your http server: http://localhost/~username/webapp/public/index.php/
and you're set! Happy development :)