Skip to content
This repository has been archived by the owner on Feb 6, 2023. It is now read-only.

Commit

Permalink
Move phpunit to dev dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrea De Pirro committed Jul 26, 2019
1 parent d75faba commit 8264e91
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions composer.json
Expand Up @@ -10,12 +10,12 @@
},
"require": {
"php": ">=7.1",
"illuminate/support": "^5.8",
"phpunit/phpunit": "^7.0"
"illuminate/support": "^5.8"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.4",
"php-mock/php-mock-mockery": "^1.3"
"php-mock/php-mock-mockery": "^1.3",
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion tests/DatabaseMigrateTestListenerTest.php
Expand Up @@ -58,7 +58,7 @@ public function testMigrateCommandHasNotBeenExecutedWhenTestSuiteDontMatches()
$listener->startTestSuite($testSuite);
}

public function tearDown()
public function tearDown(): void
{
parent::tearDown();
Mockery::close();
Expand Down

0 comments on commit 8264e91

Please sign in to comment.