Skip to content

Commit

Permalink
Update phpunit/phpunit requirement from ^7 to ^8 (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored and Ilya Chekalskiy committed Feb 18, 2019
1 parent 1b1eab9 commit c0bcfc6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
language: php

php:
- 7.1
- 7.2
- 7.3

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
}
],
"require": {
"php": ">=7.1"
"php": ">=7.2"
},
"require-dev": {
"phpunit/phpunit": "^7"
"phpunit/phpunit": "^8"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion tests/BankDbTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class BankDbTest extends TestCase
*/
protected $bank_db;

protected function setUp()
protected function setUp(): void
{
$this->bank_db = new BankDb();
}
Expand Down
2 changes: 1 addition & 1 deletion tests/BankInfoTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class BankInfoTest extends TestCase
*/
protected $valid_prefix = '428906';

protected function setUp()
protected function setUp(): void
{
$this->bank_db = new BankDb();
}
Expand Down

0 comments on commit c0bcfc6

Please sign in to comment.