PHPackages                             testcase/pushlist - 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. [Testing &amp; Quality](/categories/testing)
4. /
5. testcase/pushlist

ActiveLibrary[Testing &amp; Quality](/categories/testing)

testcase/pushlist
=================

is test case

1.1.0(7y ago)015MITHTMLPHP &gt;=5.4

Since May 17Pushed 7y agoCompare

[ Source](https://github.com/wsi7554123/toptest)[ Packagist](https://packagist.org/packages/testcase/pushlist)[ RSS](/packages/testcase-pushlist/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (1)DependenciesVersions (2)Used By (0)

ThinkPHP 5.0
============

[](#thinkphp-50)

[![Total Downloads](https://camo.githubusercontent.com/7951b1071395fbdefbe214bb21d8500311696d86339d2f7b3874072fc8df1435/68747470733a2f2f706f7365722e707567782e6f72672f746f707468696e6b2f7468696e6b2f646f776e6c6f616473)](https://packagist.org/packages/topthink/think)[![Latest Stable Version](https://camo.githubusercontent.com/1eedabafc4bbad59931a1492eb1e429d6176cf122079896337c60e141a47030b/68747470733a2f2f706f7365722e707567782e6f72672f746f707468696e6b2f7468696e6b2f762f737461626c65)](https://packagist.org/packages/topthink/think)[![Latest Unstable Version](https://camo.githubusercontent.com/3fea63d43e8de0a280aaba650922381a35446205de615684122e0c7c4d68e1c8/68747470733a2f2f706f7365722e707567782e6f72672f746f707468696e6b2f7468696e6b2f762f756e737461626c65)](https://packagist.org/packages/topthink/think)[![License](https://camo.githubusercontent.com/275b2f809357de220632c0e28f86c854e8e47ecea75694a172a1191a0f2a1656/68747470733a2f2f706f7365722e707567782e6f72672f746f707468696e6b2f7468696e6b2f6c6963656e7365)](https://packagist.org/packages/topthink/think)

ThinkPHP5在保持快速开发和大道至简的核心理念不变的同时，PHP版本要求提升到5.4，对已有的CBD模式做了更深的强化，优化核心，减少依赖，基于全新的架构思想和命名空间实现，是ThinkPHP突破原有框架思路的颠覆之作，其主要特性包括：

- 基于命名空间和众多PHP新特性
- 核心功能组件化
- 强化路由功能
- 更灵活的控制器
- 重构的模型和数据库类
- 配置文件可分离
- 重写的自动验证和完成
- 简化扩展机制
- API支持完善
- 改进的Log类
- 命令行访问支持
- REST支持
- 引导文件支持
- 方便的自动生成定义
- 真正惰性加载
- 分布式环境支持
- 更多的社交类库

> ThinkPHP5的运行环境要求PHP5.4以上。

详细开发文档参考 [ThinkPHP5完全开发手册](http://www.kancloud.cn/manual/thinkphp5)

目录结构
----

[](#目录结构)

初始的目录结构如下：

```
www  WEB部署目录（或者子目录）
├─application           应用目录
│  ├─common             公共模块目录（可以更改）
│  ├─module_name        模块目录
│  │  ├─config.php      模块配置文件
│  │  ├─common.php      模块函数文件
│  │  ├─controller      控制器目录
│  │  ├─model           模型目录
│  │  ├─view            视图目录
│  │  └─ ...            更多类库目录
│  │
│  ├─command.php        命令行工具配置文件
│  ├─common.php         公共函数文件
│  ├─config.php         公共配置文件
│  ├─route.php          路由配置文件
│  ├─tags.php           应用行为扩展定义文件
│  └─database.php       数据库配置文件
│
├─public                WEB目录（对外访问目录）
│  ├─index.php          入口文件
│  ├─router.php         快速测试文件
│  └─.htaccess          用于apache的重写
│
├─thinkphp              框架系统目录
│  ├─lang               语言文件目录
│  ├─library            框架类库目录
│  │  ├─think           Think类库包目录
│  │  └─traits          系统Trait目录
│  │
│  ├─tpl                系统模板目录
│  ├─base.php           基础定义文件
│  ├─console.php        控制台入口文件
│  ├─convention.php     框架惯例配置文件
│  ├─helper.php         助手函数文件
│  ├─phpunit.xml        phpunit配置文件
│  └─start.php          框架入口文件
│
├─extend                扩展类库目录
├─runtime               应用的运行时目录（可写，可定制）
├─vendor                第三方类库目录（Composer依赖库）
├─build.php             自动生成定义文件（参考）
├─composer.json         composer 定义文件
├─LICENSE.txt           授权说明文件
├─README.md             README 文件
├─think                 命令行入口文件

```

> router.php用于php自带webserver支持，可用于快速测试 切换到public目录后，启动命令：php -S localhost:8888 router.php 上面的目录结构和名称是可以改变的，这取决于你的入口文件和配置参数。

命名规范
----

[](#命名规范)

  Foo `ThinkPHP5`遵循PSR-2命名规范和PSR-4自动加载规范，并且注意如下规范： ### 目录和文件

[](#目录和文件)

- 目录不强制规范，驼峰和小写+下划线模式均支持；
- 类库、函数文件统一以`.php`为后缀；
- 类的文件名均以命名空间定义，并且命名空间的路径和类库文件所在路径一致；
- 类名和类文件名保持一致，统一采用驼峰法命名（首字母大写）；

### 函数和类、属性命名

[](#函数和类属性命名)

- 类的命名采用驼峰法，并且首字母大写，例如 `User`、`UserType`，默认不需要添加后缀，例如`UserController`应该直接命名为`User`；
- 函数的命名使用小写字母和下划线（小写字母开头）的方式，例如 `get_client_ip`；
- 方法的命名使用驼峰法，并且首字母小写，例如 `getUserName`；
- 属性的命名使用驼峰法，并且首字母小写，例如 `tableName`、`instance`；
- 以双下划线“\_\_”打头的函数或方法作为魔法方法，例如 `__call` 和 `__autoload`；

### 常量和配置

[](#常量和配置)

- 常量以大写字母和下划线命名，例如 `APP_PATH`和 `THINK_PATH`；
- 配置参数以小写字母和下划线命名，例如 `url_route_on` 和`url_convert`；

### 数据表和字段

[](#数据表和字段)

- 数据表和字段采用小写加下划线方式命名，并注意字段名不要以下划线开头，例如 `think_user` 表和 `user_name`字段，不建议使用驼峰和中文作为数据表字段命名。

参与开发（）
------

[](#参与开发)

请参阅 [ThinkPHP5 核心框架包](https://github.com/top-think/framework)。 项目文档目录([sdf](https://github.com/wsi7554123/toptest/blob/master/build.php))

版权信息
----

[](#版权信息)

接口文档
----

[](#接口文档)

- [短信验证接口](https://github.com/wsi7554123/toptest/blob/master/sms.md)

ThinkPHP遵循Apache2开源协议发布，并提供免费使用。

本项目包含的第三方源码和二进制文件之版权信息另行标注。

版权所有Copyright © 2006-2017 by ThinkPHP ()

All rights reserved。

ThinkPHP® 商标和著作权所有者为上海顶想信息科技有限公司。

更多细节参阅 [LICENSE.txt](LICENSE.txt)

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity57

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

2914d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/e7ef058cde4a87d07e68f4247b5082e91ac2aba4048c89b3740d0b705dac776f?d=identicon)[wsi7554123](/maintainers/wsi7554123)

---

Top Contributors

[![wsi7554123](https://avatars.githubusercontent.com/u/22285175?v=4)](https://github.com/wsi7554123 "wsi7554123 (14 commits)")

### Embed Badge

![Health badge](/badges/testcase-pushlist/health.svg)

```
[![Health](https://phpackages.com/badges/testcase-pushlist/health.svg)](https://phpackages.com/packages/testcase-pushlist)
```

###  Alternatives

[phpspec/prophecy

Highly opinionated mocking framework for PHP 5.3+

8.5k551.7M677](/packages/phpspec-prophecy)[vimeo/psalm

A static analysis tool for finding errors in PHP applications

5.8k77.5M6.7k](/packages/vimeo-psalm)[brianium/paratest

Parallel testing for PHP

2.5k118.8M752](/packages/brianium-paratest)[beberlei/assert

Thin assertion library for input validation in business models.

2.4k96.9M570](/packages/beberlei-assert)[mikey179/vfsstream

Virtual file system to mock the real file system in unit tests.

1.4k108.0M2.7k](/packages/mikey179-vfsstream)[orchestra/testbench

Laravel Testing Helper for Packages Development

2.2k39.1M32.0k](/packages/orchestra-testbench)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
