Skip to content

Commit

Permalink
update dev dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mhujer committed Nov 24, 2019
1 parent 1ed2a69 commit be4d433
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/composer.lock
/vendor
/.phpunit.result.cache
15 changes: 7 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,14 @@
"symfony/http-kernel": "^4.3"
},
"require-dev": {
"consistence/coding-standard": "3.5",
"consistence/coding-standard": "3.9",
"jakub-onderka/php-parallel-lint": "1.0.0",
"matthiasnoback/symfony-config-test": "4.0.0",
"matthiasnoback/symfony-dependency-injection-test": "3.0.0",
"phpstan/phpstan-shim": "0.10.5",
"phpstan/phpstan-phpunit": "0.10",
"phpunit/phpunit": "7.4.4",
"php-coveralls/php-coveralls": "2.1.0",
"squizlabs/php_codesniffer": "3.3.2"
"matthiasnoback/symfony-config-test": "4.1.0",
"matthiasnoback/symfony-dependency-injection-test": "4.1.0",
"phpstan/phpstan-shim": "0.11.19",
"phpstan/phpstan-phpunit": "0.11.2",
"phpunit/phpunit": "8.4.3",
"php-coveralls/php-coveralls": "2.2.0"
},
"autoload": {
"psr-4": {
Expand Down
8 changes: 4 additions & 4 deletions tests/EventListener/JsErrorToAlertListenerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -275,11 +275,11 @@ public function testScriptIsNotInjectedOnNonHtmlContentType(): void
}

/**
* @return \PHPUnit_Framework_MockObject_MockObject|\Symfony\Component\HttpKernel\Kernel
* @return \PHPUnit\Framework\MockObject\MockObject|\Symfony\Component\HttpKernel\Kernel
*/
protected function getKernelMock()
{
/** @var \Symfony\Component\HttpKernel\Kernel|\PHPUnit_Framework_MockObject_MockObject $kernelMock */
/** @var \Symfony\Component\HttpKernel\Kernel|\PHPUnit\Framework\MockObject\MockObject $kernelMock */
$kernelMock = $this
->getMockBuilder(Kernel::class)
->disableOriginalConstructor()
Expand All @@ -290,11 +290,11 @@ protected function getKernelMock()
/**
* @param bool $isXmlHttpRequest
* @param string $requestFormat
* @return \PHPUnit_Framework_MockObject_MockObject|\Symfony\Component\HttpFoundation\Request
* @return \PHPUnit\Framework\MockObject\MockObject|\Symfony\Component\HttpFoundation\Request
*/
protected function getRequestMock(bool $isXmlHttpRequest = false, string $requestFormat = 'html')
{
/** @var \Symfony\Component\HttpFoundation\Request|\PHPUnit_Framework_MockObject_MockObject $request */
/** @var \Symfony\Component\HttpFoundation\Request|\PHPUnit\Framework\MockObject\MockObject $request */
$request = $this
->getMockBuilder(Request::class)
->setMethods([
Expand Down

0 comments on commit be4d433

Please sign in to comment.