composer update
This commit is contained in:
@@ -8,6 +8,8 @@ Bringing the [Symfony Var-Dump Server](https://symfony.com/doc/current/component
|
||||
|
||||
This package will give you a dump server, that collects all your `dump` call outputs, so that it does not interfere with HTTP / API responses.
|
||||
|
||||
> If you want to learn how to create reusable PHP packages yourself, take a look at my upcoming [PHP Package Development](https://phppackagedevelopment.com) video course.
|
||||
|
||||
## Installation
|
||||
|
||||
You can install the package via composer:
|
||||
@@ -50,7 +52,7 @@ You can see it in action here:
|
||||
|
||||
### Changelog
|
||||
|
||||
Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.
|
||||
Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.
|
||||
|
||||
## Contributing
|
||||
|
||||
|
||||
@@ -11,15 +11,15 @@
|
||||
{
|
||||
"name": "Marcel Pociot",
|
||||
"email": "marcel@beyondco.de",
|
||||
"homepage": "https://beyondcode.de",
|
||||
"homepage": "https://beyondco.de",
|
||||
"role": "Developer"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"php": "^7.1",
|
||||
"illuminate/console": "5.6.*|5.7.*|5.8.*",
|
||||
"illuminate/http": "5.6.*|5.7.*|5.8.*",
|
||||
"illuminate/support": "5.6.*|5.7.*|5.8.*",
|
||||
"illuminate/console": "5.6.*|5.7.*|5.8.*|^6.0",
|
||||
"illuminate/http": "5.6.*|5.7.*|5.8.*|^6.0",
|
||||
"illuminate/support": "5.6.*|5.7.*|5.8.*|^6.0",
|
||||
"symfony/var-dumper": "^4.1.1"
|
||||
},
|
||||
"require-dev": {
|
||||
|
||||
0
vendor/beyondcode/laravel-dump-server/src/Dumper.php
vendored
Normal file → Executable file
0
vendor/beyondcode/laravel-dump-server/src/Dumper.php
vendored
Normal file → Executable file
@@ -59,7 +59,7 @@ class RequestContextProvider implements ContextProviderInterface
|
||||
return [
|
||||
'uri' => $this->currentRequest->getUri(),
|
||||
'method' => $this->currentRequest->getMethod(),
|
||||
'controller' => $controller ? $this->cloner->cloneVar(class_basename($controller)) : $controller,
|
||||
'controller' => $controller ? $this->cloner->cloneVar(class_basename($controller)) : $this->cloner->cloneVar(null),
|
||||
'identifier' => spl_object_hash($this->currentRequest),
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user