Koine Mvc Skeleton App
Another very simple MVC framework., (*1)
Code information:, (*2)
, (*3)
Package information:, (*4)
, (*5)
Installing
Via Composer
Run the following command, (*6)
composer create-project koinephp/mvc-skeleton --stability=dev
Via Git
git clone https://github.com/koinephp/mvc-skeleton.git myapp
cd myapp
composer install
Files
- Controllers are found in
app/controllers
- Views are found in
app/views
Setting up your app namespace
The default namespace is MyApp. To change, change a few files as follows:, (*7)
- Edit composer.json, the autoload session
- Edit public/index.php and change the
$appNamespace variable.
Issues/Features proposals
Here is the issue tracker., (*8)
Contributing
Only TDD code will be accepted. Please follow the PSR-2 code standard., (*9)
- Fork it
- Create your feature branch (
git checkout -b my-new-feature)
- Commit your changes (
git commit -am 'Add some feature')
- Push to the branch (
git push origin my-new-feature)
- Create new Pull Request
How to run the tests:
phpunit --configuration tests/phpunit.xml
To check the code standard run:
phpcs --standard=PSR2 lib
phpcs --standard=PSR2 tests
Lincense
MIT, (*10)
Authors