koine / mvc-skeleton
Skeleton for mvc application using the koine/mvc framework
Installs: 17
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/koine/mvc-skeleton
Requires
- php: >=5.3.3
- koine/mvc: ~0.9.7
Requires (Dev)
- phpunit/phpunit: *
- satooshi/php-coveralls: dev-master
This package is not auto-updated.
Last update: 2025-09-27 21:44:19 UTC
README
Another very simple MVC framework.
Code information:
Package information:
Installing
Via Composer
Run the following command
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:
- Edit composer.json, the autoload session
- Edit public/index.php and change the
$appNamespace
variable.
Issues/Features proposals
Here is the issue tracker.
Contributing
Only TDD code will be accepted. Please follow the PSR-2 code standard.
- 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