2017 © Pedro Peláez
 

library yaf-library

yaf-library

image

wall2flower/yaf-library

yaf-library

  • Saturday, July 7, 2018
  • by wall2flower
  • Repository
  • 1 Watchers
  • 0 Stars
  • 18 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 3 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

依赖

  • PHP
  • Yaf 扩展
  • Composer

组件

yaf框架本身是一个比较精简的MVC框架, 本身并没有提供其他类库, 本项目主要提供了一些常用到的组件:, (*1)

  • 验证码 Captcha
  • 数据库 ORM
  • Http
  • Cache
    • Redis
    • Memcached
  • 日志
  • 上传组件
  • 校验
  • 视图
  • 事件
  • 依赖注入

安装

安装类库

方式一(用于单项目):, (*2)

composer require phpcasts/yaf-library -vvv

方式二(用于多项目共享):, (*3)

git clone https://github.com/qloog/yaf-library

修改配置文件的: application.library = APP_PATH "/library" 为: application.library = APP_ROOT "/../yaf-library", (*4)

PS: yaf-library与项目在同一级目录, 达到多项目共享一套 yaf-library 的目的,便于维护和管理, (*5)

添加配置

打开 conf/application.ini, 添加一下配置:, (*6)

; cache
cache.type = redis
cache.redis = default

; Redis
redis.default.host = 127.0.0.1
redis.default.port = 6379

;database
database.driver     = mysql
database.host       = localhost
database.database   = test
database.username   = root
database.password   = 123456
database.port       = 3306
database.charset    = utf8
database.collation  = utf8_unicode_ci
database.prefix     = ""

; Log
log.level = debug
log.channel = default
log.file.dir = APP_ROOT "/storage/logs"

添加常量定义

一般定义在public/index.php文件中, (*7)

define('APP_ROOT', dirname(__DIR__));
define('APP_PATH', APP_ROOT . '/application');

Usage

以使用Cache为例:, (*8)

use PHPCasts\Yaf\Caches\Cache;
...

 $cache = Cache::getInstance();
 $cache->set('test', 'test-value');

实际使用

Docs

License

MIT, (*9)

The Versions

07/07 2018

dev-master

9999999-dev

yaf-library

  Sources   Download

MIT

The Requires

 

The Development Requires

library yaf yaf-library