TinyMVC

TinyMVC是一个PHP MVC(Model-View-Controller)应用程序框架。(TinyMVC is an MVC (Model-View-Controller) application framework for PHP. )

  • Owner: mohrt/tinymvc-php
  • Platform:
  • License::
  • Category::
  • Topic:
  • Like:
    0
      Compare:

Github stars Tracking Chart

TinyMVC是PHP的MVC(Model-View-Controller)应用程序框架。 它提供数据(模型)、表现(View)和两者之间的胶合(控制器)的明确分隔。

TinyMVC不是全功能的框架。 开箱即用,它是一个简单的具有数据库支持层(PDO)的MVC结构。 这个框架的每个方面都可以通过插件来扩展。 插件将在维基中提供。

要求:TinyMVC需要PHP 5.捆绑的数据库库需要PDO,这是PHP 5.1及以上版本。

特征:TinyMVC提供了Model,View和控制器,并支持数据库抽象层的PDO。TinyMVC的每个组件都可以通过类扩展来定制,框架可以使用您自己的插件轻松扩展。 多个应用程序也很容易处理。 你可以把你的插件放在应用程序级别,或者您可以跨应用程序共享它们。设置这样的文件结构,使您的自定义部分与核心隔离,所以容易更新维护。

Overview

Name With Ownermohrt/tinymvc-php
Primary LanguagePHP
Program languagePHP (Language Count: 1)
Platform
License:
Release Count4
Last Release NameTinyMVC_1_2_3 (Posted on )
First Release Namestart (Posted on )
Created At2015-03-30 03:06:46
Pushed At2018-04-13 20:01:58
Last Commit At2015-04-26 22:40:35
Stargazers Count47
Watchers Count6
Fork Count18
Commits Count58
Has Issues Enabled
Issues Count13
Issue Open Count5
Pull Requests Count0
Pull Requests Open Count1
Pull Requests Close Count0
Has Wiki Enabled
Is Archived
Is Fork
Is Locked
Is Mirror
Is Private

NAME:
TinyMVC: An MVC application framework for PHP.

AUTHOR:
Monte Ohrt (monte [at] ohrt [dot] com)

VERSION:
1.2.4-dev

DATE:
May 3, 2013

WEBSITE:
http://www.tinymvc.com/

DOWNLOAD:
http://www.tinymvc.com/download

ANONYMOUS GIT:
https://github.com/mohrt/tinymvc-php

DESCRIPTION:

What is TinyMVC?

TinyMVC is an Model-View-Controller application framework for PHP.
Its design goals are to minimally provide separation between the database
operations (Model), the presentation (View), and the glue in between
(Controller). With very little extras bundled in, this framework is
extremely fast and flexible. Some design aspects and terminology of TinyMVC
have been inspired by other PHP frameworks, although the code is 100%
original.

What TinyMVC is NOT

TinyMVC is NOT a full-featured framework. As it stands, it is a simple
MVC structure with a database support layer (PDO). Any and all features
you desire (form validation, session handling, etc.) are easily added
with your own plugins. Plugins will become available in the wiki as
they are programmed or contributed by other users. If a plugin is
essential enough, it may eventually find its way to the core distribution.

REQUIREMENTS:

TinyMVC requires PHP 5. The bundled database library requires PDO,
which is included with PHP 5.1 and up.

FEATURES:

TinyMVC supplies easy separation between Model, View and
Controller, and supports PDO for the database abstraction layer. Each
and every component of TinyMVC is customizable with class extensions,
and the framework is easily extended with your own plugins.

Multiple applications are also easy to handle. You can drop your plugins
in at the application level, or you can share them across applications.
The file structure is setup so your customizations are kept isolated from
the core, so updates are easy to maintain.

COPYRIGHT:
Copyright(c) 2007 New Digital Group, Inc. All rights reserved.

This library is free software; you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or (at
your option) any later version.

This library is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
License for more details.
To the top