Skip to content

Commit

Permalink
Upgrade Symfony components to 4.3 and Phpunit to 8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
hmazter committed Jun 11, 2019
1 parent 59566cc commit c215a4d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@

# PHP
vendor
composer.lock
composer.lock
.phpunit.result.cache
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@
],
"require": {
"php": "^7.2",
"symfony/config": "^4.2",
"symfony/console": "^4.2",
"symfony/dependency-injection": "^4.2",
"symfony/yaml": "^4.2"
"symfony/config": "^4.3",
"symfony/console": "^4.3",
"symfony/dependency-injection": "^4.3",
"symfony/yaml": "^4.3"
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"symfony/var-dumper": "^4.2"
"phpunit/phpunit": "^8.2",
"symfony/var-dumper": "^4.3"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion tests/Command/ExampleCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ public function command_outputs_info()
$commandTester->execute(['command' => $command->getName()]);

$output = $commandTester->getDisplay();
$this->assertContains('This is an example', $output);
$this->assertStringContainsString('This is an example', $output);
}
}

0 comments on commit c215a4d

Please # to comment.