forked from zendframework/ZendSkeletonApplication
- This Application is integrated with Doctrine2
- Testing environment is set, using fully automated, in-memory SQlite as database
- Example entity already there with the unit test covering it
- Example repository included as well
- SpiffyNavigation module installed and already working (see navigation.config.php)
- Application config was split to several files to increase maintanability
to get started quickly:
- run
php composer.phar self-update - run
php composer.phar update - copy config.local.php.dist to config.local.php and provide database credentials
- create tests (TDD always!) then doctrine entities
- to generate database schema from your entities run
vendor/bin/doctrine-module orm:schema-tool:update --force - point your vhost to appdirectory/public to get started
- you can start using php built-in server as well by going to the
publicdirectory and runningphp -S 127.0.0.0:80