Download the PHP package xianrenqh/huicmf_tp51_auth without Composer

On this page you can find all versions of the php package xianrenqh/huicmf_tp51_auth. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package huicmf_tp51_auth

Huicmf 3.0 —— 念念不忘 必有回響,你值得信赖的CMF

此项目不再更新,请使用tp6版本的:

https://github.com/xianrenqh/huicmf_tp6

Total Downloads PHP Version License

HuiCMF3.0基于ThinkPHP5.1框架进行二次开发,其主要特性包括:

HuiCMF3.0的运行环境要求PHP7.0以上。

安装

1、

使用git进行安装

git clone https://github.com/xianrenqh/huicmf_tp51_auth.git

之后使用composer update进行更新

启动服务

2、

composer create-project xianrenqh/huicmf_tp51_aut composer require xianrenqh/huicmf_tp51_auth 之后使用composer update进行更新

代码里已用到的缓存名称

cache_auth_rule
cache_auth_rules
menulist(管理员id) cache_configs

在线手册

api接口文档生成说明(apidoc)

系统api接口文档 生成 依赖第三方工具apidoc 如果你要使用则必须先安装apidoc
先安装node.js 如下链接下载安装
64 位安装包下载地址 :
https://nodejs.org/dist/v12.13.1/node-v12.13.1-x64.msi
安装完成以后 开始安装 apidoc

命令行:npm install apidoc -g

安装成功以后 开始生成接口文档

1、进入api目录 注意不要在其他目录生成(api目录默认会有apidoc.json 配置文件)

2、执行生成命令:
apidoc -i ./ -o ../../public/doc
(执行目录为api目录 生成文档路径为 public/doc)

目录结构

初始的目录结构如下:

www  WEB部署目录(或者子目录)
├─application           应用目录
│  ├─common             公共模块目录(可以更改)
│  ├─module_name        模块目录
│  │  ├─common.php      模块函数文件
│  │  ├─controller      控制器目录
│  │  ├─model           模型目录
│  │  ├─view            视图目录
│  │  └─ ...            更多类库目录
│  │
│  ├─command.php        命令行定义文件
│  ├─common.php         公共函数文件
│  └─tags.php           应用行为扩展定义文件
│
├─config                应用配置目录
│  ├─module_name        模块配置目录
│  │  ├─database.php    数据库配置
│  │  ├─cache           缓存配置
│  │  └─ ...            
│  │
│  ├─app.php            应用配置
│  ├─cache.php          缓存配置
│  ├─cookie.php         Cookie配置
│  ├─database.php       数据库配置
│  ├─log.php            日志配置
│  ├─session.php        Session配置
│  ├─template.php       模板引擎配置
│  └─trace.php          Trace配置
│
├─route                 路由定义目录
│  ├─route.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                 命令行入口文件

可以使用php自带webserver快速测试 切换到根目录后,启动命令:php think run

命名规范

ThinkPHP5遵循PSR-2命名规范和PSR-4自动加载规范,并且注意如下规范:

目录和文件

函数和类、属性命名

常量和配置

数据表和字段

参与开发

请参阅 [ThinkPHP5 核心框架包]

版权信息

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

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

版权所有Copyright © 2006-2018 by ThinkPHP (http://thinkphp.cn)

All rights reserved。

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

更多细节参阅 LICENSE.txt


All versions of huicmf_tp51_auth with dependencies

PHP Build Version
Package Version
Requires php Version >=7.0.0
topthink/framework Version 5.1.*
topthink/think-captcha Version 2.0.*
topthink/think-image Version ^1.0
phpmailer/phpmailer Version ^6.1
xianrenqh/api-doc-php Version ^1.4
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package xianrenqh/huicmf_tp51_auth contains the following files

Loading the files please wait ....