corycollier / mvc-lite
A lightweight MVC Framework, inspired by Zend Framework
Installs: 23
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 1
Forks: 2
Open Issues: 0
pkg:composer/corycollier/mvc-lite
Requires
- php: >=5.5
- corycollier/php-cli: ^1.2.0
Requires (Dev)
- pdepend/pdepend: ^2.2
- phploc/phploc: ^2.1
- phpmd/phpmd: ^2.3
- phpunit/phpunit: ^5.0
- phpunit/phpunit-mock-objects: ^3.0
- satooshi/php-coveralls: ^0.7.1
- sebastian/phpcpd: ^2.0
- squizlabs/php_codesniffer: ^2.3
- theseer/phpdox: 0.8.1.1
This package is not auto-updated.
Last update: 2022-02-01 12:53:47 UTC
README
Introduction
mvc-lite is a lightweight MVC Framework aimed at accomplishing common MVC goals in a much lighter package. The bulk of this work is inspired by the Zend Framework (http://framework.zend.com)
Usage
This library should be used to create a simple MVC application. If you need sophisticated application handling, consider a more robust framework, like Zend Framework, Laravel, or Symfony.
Quick Start
The mvc
script can be used to help start an application quickly. It's usage is:
./bin/mvc setup --target=/local/path/to/app
Once created, adding an entire resources (i.e. Users) can be done like this:
./bin/mvc resource:create --target=/local/path/to/app --name=users
Full Documentation
Full documentation can be found on our GitHub Pages site