shpasser/gae-support 问题修复 & 功能扩展

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

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

shpasser/gae-support

最新稳定版本:1.0.8

Composer 安装命令:

composer require shpasser/gae-support

包简介

Google App Engine Support for Laravel apps.

README 文档

README

Google App Engine(GAE) Support package for Laravel 4.

Currently supported features:

  • Generation of general configuration files,
  • Mail service provider,
  • Queue service provider.

For Laravel 5 see https://github.com/shpasser/GaeSupportL5.
For Lumen see https://github.com/shpasser/GaeSupportLumen.

Installation

Pull in the package via Composer.

"require": {
    "shpasser/gae-support": "~1.0"
}

Then include the service provider within app/config/app.php.

'providers' => [
    'Shpasser\GaeSupport\GaeSupportServiceProvider'
];

Usage

Generate the GAE related files / entries.

php artisan gae:setup --config your-app-id

The default GCS bucket is configured unless a custom bucket id is defined using the --bucket option.

php artisan gae:setup --config --bucket="your-bucket-id" your-app-id

Mail

The mail driver configuration file can be found at app/config/production/mail.php, it is one of many configuration files generated by the artisan command. There is no need in any kind of custom configuration. All the outgoing mail messages are sent with sender address of an administrator of the application, i.e. admin@your-app-id.appspotmail.com. The sender, to, cc, bcc, replyTo, subject, body and attachment parts of email message are supported.

Queues

The generated queue configuration file app/config/production/queue.php should contain:

return array(

	'default' => 'gae',

	/*
	|--------------------------------------------------------------------------
	| GAE Queue Connection
	|--------------------------------------------------------------------------
	|
	*/

	'connections' => array(

		'gae' => array(
			'driver'	=> 'gae',
			'queue'		=> 'default',
			'url'		=> '/tasks',
			'encrypt'	=> true,
		),
	),

);

The 'default' queue and encryption are used by default. In order to use the queue your app/routes.php file should contain the following route:

Route::post('tasks', array('as' => 'tasks',
function()
{
	return Queue::marshal();
}));

This route will be used by the GAE queue to push the jobs. Please notice that the route and the GAE Queue Connection 'url' parameter point to the same URL. For more information on the matter please see http://laravel.com/docs/4.2/queues#push-queues.

Deploy

Download and install GAE SDK for PHP and deploy your app.

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2014-11-24

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固