oxenti/request 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

oxenti/request

Composer 安装命令:

composer require oxenti/request

包简介

Request plugin for CakePHP

README 文档

README

This plugin contains a package with API methods for managing Addresses on a CakePHP 3 application.

Requirements

  • CakePHP 3.0+

Installation

You can install this plugin into your CakePHP application using composer.

The recommended way to install composer packages is:

composer require oxenti/request

Configuration

In your app's config/bootstrap.php add:

// In config/bootstrap.php
Plugin::load('Request');

or using cake's console:

./bin/cake plugin load Request

In your app's initial folder execute plugin's migrations:

./bin/cake migrations migrate -p Request

Configuration files

Move the 'request.php' config file from the plugin's config folder to your app's config folder.

On your app's 'bootstrap.php' add the address configuration file:

    ...
    try {
	    Configure::config('default', new PhpConfig());
	    Configure::load('app', 'default', false);
	} catch (\Exception $e) {
	    die($e->getMessage() . "\n");
	}

	Configure::load('request', 'default');
    ...

Using extrenal Associations

If you want to associate the Request table with other tables on your application, use the request.php configuration file setting the 'relations' entry to your needs.

统计信息

  • 总下载量: 21
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 5
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: Unknown
  • 更新时间: 2015-11-06