PHPackages                             smallphp/smallphp - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Framework](/categories/framework)
4. /
5. smallphp/smallphp

ActiveLibrary[Framework](/categories/framework)

smallphp/smallphp
=================

smallphp framework

v0.0.2(8y ago)734MITPHPPHP &gt;=5.3.0

Since Dec 30Pushed 7y ago1 watchersCompare

[ Source](https://github.com/smallphp/smallphp)[ Packagist](https://packagist.org/packages/smallphp/smallphp)[ RSS](/packages/smallphp-smallphp/feed)WikiDiscussions master Synced 3d ago

READMEChangelogDependenciesVersions (3)Used By (0)

Smallphp Framework
==================

[](#smallphp-framework)

框架目录

```
├── Cache
│   └── Adapter
│       ├── Memcache.php
│       └── Redis.php
├── composer.json
├── Config.php
├── Database
│   ├── Adapter
│   │   ├── Mysqli
│   │   │   └── Result.php
│   │   └── Mysqli.php
│   └── Adapter.php
├── Database.php
├── Di.php
├── Dispatch.php
├── examples
│   ├── config
│   │   ├── database.php
│   │   └── router.php
│   ├── controllers
│   │   └── Index.php
│   ├── index.php
│   ├── models
│   │   ├── Test.php
│   │   └── User.php
│   └── views
│       └── index
│           └── index.php
├── Loader.php
├── Mvc
│   ├── Controller.php
│   ├── Model.php
│   ├── Router.php
│   ├── Url.php
│   └── View.php
├── Nosql
│   ├── Mongodb
│   │   └── Query.php
│   └── Mongodb.php
├── README.md
├── Request.php
├── Session
│   ├── Adapter
│   │   ├── File.php
│   │   ├── Memcache.php
│   │   └── Redis.php
│   └── Adapter.php
├── Session.php
└── Spl
    └── ArrayAccess.php

```

入口文件examples/index.php

```
