Skip to content

Commit 2222131

Browse files
committed
"php-console/laravel-service-provider" suggestion in composer.json
1 parent d61c80c commit 2222131

3 files changed

Lines changed: 8 additions & 5 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# PHP Console server library
22

3-
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](https://chrome.google.com/webstore/detail/php-console/nfhmhhlpfleoednkpnnnkolmclajemef) and [PhpConsole server library](https://github.com/barbushin/php-console).
3+
[![Latest Stable Version](https://poser.pugx.org/php-console/php-console/version.png)](https://packagist.org/packages/php-console/php-console) [![Composer Installs](https://poser.pugx.org/php-console/php-console/d/total.png)](https://packagist.org/packages/php-console/php-console) [![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/barbushin/php-console/trend.png)](https://bitdeli.com/free "Bitdeli Badge")
44

5-
[![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/barbushin/php-console/trend.png)](https://bitdeli.com/free "Bitdeli Badge")
5+
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](https://chrome.google.com/webstore/detail/php-console/nfhmhhlpfleoednkpnnnkolmclajemef) and [PhpConsole server library](https://github.com/barbushin/php-console).
66

77
### Overview
88

@@ -163,7 +163,7 @@ PHP Console has multifunctional and smart vars dumper that allows to
163163

164164
**Longest** native debug method call:
165165

166-
PhpConsole\Connector::getInstance()->getDebugDispatcher()->dispatchDebug($var, 'some.tags');`
166+
PhpConsole\Connector::getInstance()->getDebugDispatcher()->dispatchDebug($var, 'some.tags');
167167

168168
**Shorter** call debug from Handler:
169169

@@ -179,7 +179,7 @@ PHP Console has multifunctional and smart vars dumper that allows to
179179
**Custom** call debug by user defined function
180180

181181
function d($var, $tags = null) {
182-
PhpConsole\Connector::getInstance()->getDebugDispatcher()->dispatchDebug(var, $tags, 1);
182+
PhpConsole\Connector::getInstance()->getDebugDispatcher()->dispatchDebug($var, $tags, 1);
183183
}
184184
d($var, 'some.tags');
185185

composer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@
1818
"require": {
1919
"php": ">=5.3.0"
2020
},
21+
"suggest": {
22+
"php-console/laravel-service-provider": "*"
23+
},
2124
"autoload": {
2225
"psr-0": {
2326
"PhpConsole": "src/"

examples/index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* https://chrome.google.com/webstore/detail/nfhmhhlpfleoednkpnnnkolmclajemef
88
*
99
* @see http://github.com/barbushin/php-console
10-
* @version 3.0
10+
* @version 3.1
1111
* @author Sergey Barbushin http://linkedin.com/in/barbushin
1212
* @license http://opensource.org/licenses/BSD-3-Clause "BSD 3-Clause License"
1313
* @copyright © Sergey Barbushin, 2013. Some rights reserved.

0 commit comments

Comments
 (0)