定制 php-console/laravel-service-provider 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

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

php-console/laravel-service-provider

最新稳定版本:5.1

Composer 安装命令:

composer require php-console/laravel-service-provider

包简介

Laravel service provider to handle PHP errors, dump variables, execute PHP code remotely in Google Chrome

README 文档

README

See https://github.com/barbushin/php-console-laravel/releases/tag/1.2.1

Use "php-console/laravel-service-provider": "1.*" to install it using Compoer.

Laravel 5.* service provider for PHP Console

PHP Console allows you to handle PHP errors & exceptions, dump variables, execute PHP code remotely and many other things using Google Chrome extension PHP Console and PhpConsole server library.

This packages integrates PHP Console server library with Laravel framework as configurable service provider.

Installation

Require this package in Laravel project composer.json and run composer update

"php-console/laravel-service-provider": "~5.0"

After updating composer, add the service provider line at the begining of providers array in /config/app.php

'providers' => array(
	PhpConsole\Laravel\ServiceProvider::class,

Edit config

PHP Console service provider config-file looks like this:

return array(
	'isEnabled' => true,
	'handleErrors' => true,
	'handleExceptions' => true,
	'sourcesBasePath' => base_path(),
	'registerHelper' => true,
	'serverEncoding' => null,
	'headersLimit' => null,
	'password' => null,
	'enableSslOnlyMode' => false,
	'ipMasks' => array(),
	'isEvalEnabled' => false,
	'dumperLevelLimit' => 5,
	'dumperItemsCountLimit' => 100,
	'dumperItemSizeLimit' => 5000,
	'dumperDumpSizeLimit' => 500000,
	'dumperDetectCallbacks' => true,
	'detectDumpTraceAndSource' => false,
);

See PhpConsole\Laravel\ServiceProvider for detailed options description.

By default it's located in /vendor/php-console/laravel-service-provider/src/config/phpconsole.php and it's not recommended to be edited in this path because it will be overwritten on next composer update.

If you want to edit config you need to run

$ php artisan vendor:publish --provider="php-console/laravel-service-provider" --tag=config
$ php artisan vendor:publish

So config-file will be moved to /config/phpconsole.php and can be edited as you want and changes will not be lost after composer update.

统计信息

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

GitHub 信息

  • Stars: 73
  • Watchers: 4
  • Forks: 16
  • 开发语言: PHP

其他信息

  • 授权协议: BSD
  • 更新时间: 2014-01-28