Skip to content

Commit c35647f

Browse files
committed
readme lost trailing whitespace
1 parent 8e54983 commit c35647f

1 file changed

Lines changed: 7 additions & 8 deletions

File tree

readme.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ Debug/log information is sent completely "out-of-bounds" via websockets. Since
77

88
All [PHPDebugConsole](https://github.com/bkdotcom/PHPDebugConsole) methods are supported.
99

10-
1110
### Overview
1211
There are 3 parts to this logging solution.
1312

@@ -19,10 +18,9 @@ All 3 components *can* be be running on the same server/environment, or be on 3
1918

2019
> † PHPDebugConsole also supports output via plain 'ol `<script>` output, ChromeLogger, & FirePHP.. This WAMP solution isn't limited by what the browser's console can do and offers all of the same formatting and features of PHPDebugConsole's HTML output without the disadvantages of being included in the output of your application (or not supported with ajax & CLI applications.
2120
22-
2321
### Installation
2422

25-
**Download Composer** (if not already installed) [more info](https://getcomposer.org/doc/00-intro.md#downloading-the-composer-executable)
23+
**Download Composer** (if not already installed) [more info](https://getcomposer.org/doc/00-intro.md#downloading-the-composer-executable)
2624
`$ curl -sS https://getcomposer.org/installer | php`
2725

2826
**create a project directory in your webroot**
@@ -36,12 +34,12 @@ All 3 components *can* be be running on the same server/environment, or be on 3
3634

3735
`$ php composer.phar require bdk/debug-wamp-client`
3836

39-
**Install a WAMP router** (if you don't already have one)
37+
**Install a WAMP router** (if you don't already have one)
4038
If you don't already have a WAMP router up and running, you might as well install a PHP-based one here in the same folder *(but again, it could be installed anywhere, or be a node based router)*
4139
One client+router install can support many PHPDebugConsole projects
4240
`$ php composer.phar require voryx/thruway`
4341

44-
**Start the WAMP router.**
42+
**Start the WAMP router.**
4543
`$ php vendor/voryx/thruway/Examples/SimpleWsRouter.php`
4644
*(note that the router doesn't play well with x-debug. You will likely need to disable x-debug for this process. See [this gist](https://gist.github.com/bkdotcom/4b635f7c7c07dd5800dee89cdb99e4f6))*
4745

@@ -59,18 +57,19 @@ $debug = \bdk\Debug::getInstance();
5957
new \bdk\Debug\WampClient($debug);
6058
```
6159

62-
**Navigate to the client in your browser**
60+
**Navigate to the client in your browser**
6361
`http://localhost/debugWampClient`
6462

6563
The client should have connected to the router and is ready to receive log messages
6664

67-
**Add PHPDebugConsole to the project you wish to debug**
65+
**Add PHPDebugConsole to the project you wish to debug**
6866
`$ php composer.phar require bdk/debug`
6967

70-
**Install a PHPDebugConsole/outputWamp plugin dependency**
68+
**Install a PHPDebugConsole/outputWamp plugin dependency**
7169
`$ php composer.phar require bdk/wamp-publisher`
7270

7371
Add the OutputWamp plugin to your application
72+
7473
```php
7574
require __DIR__.'/vendor/autoload.php'
7675

0 commit comments

Comments
 (0)