- PHP 5.4, 5.5, 5.6, or HHVM
Spiffy\Application can be installed using composer.
composer create-project spiffy/spiffy-application -s dev
Additionally, you can clone the repository and manually composer install.
git clone https://github.com/spiffyjr/spiffy-application.git
cd spiffy-application
composer installYou can run SpiffyApplication using the built-in PHP web server.
cd spiffy-application/public
php -S 127.0.0.1:80 index.phpIt also comes with a Vagrant/puppet configuration.
cd spiffy-application
vagrant upAfterwards, point your browser to http://localhost (php server) or http://localhost:8080 (vagrant).
To enable benchmarking (performance) mode just disable debug mode.
- Ensure
config/env.phphas'debug' => 'false'.
Afterwards, run the application once to warm the cache and you should be ready to go.