Skip to content

Commit f35f6d5

Browse files
committed
Update dev dependencies
1 parent 70a00bb commit f35f6d5

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
"laravel/nova": "^4.0"
1616
},
1717
"require-dev": {
18-
"mockery/mockery": "^1.4",
19-
"orchestra/testbench": "^6.0",
20-
"phpunit/phpunit": "^9.4"
18+
"mockery/mockery": "^1.5",
19+
"orchestra/testbench": "^7.0",
20+
"phpunit/phpunit": "^9.5"
2121
},
2222
"repositories": [
2323
{
@@ -47,6 +47,6 @@
4747
"minimum-stability": "dev",
4848
"prefer-stable": true,
4949
"scripts": {
50-
"test": "phpunit"
50+
"test": "phpunit --colors=always"
5151
}
5252
}

tests/CardServiceProviderTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
use InteractionDesignFoundation\HtmlCard\MarkdownConverter;
66
use Illuminate\Support\Facades\App;
77

8+
/** @covers \InteractionDesignFoundation\HtmlCard\CardServiceProvider */
89
final class CardServiceProviderTest extends TestCase
910
{
1011
/** @test */

tests/TestCase.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ public function setUp(): void
1212
parent::setUp();
1313
}
1414

15-
protected function getPackageProviders($app)
15+
/** @inheritDoc */
16+
protected function getPackageProviders($app): array
1617
{
1718
return [
1819
CardServiceProvider::class,

0 commit comments

Comments
 (0)