We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58b5e43 commit 1cbb475Copy full SHA for 1cbb475
composer.json
@@ -9,11 +9,11 @@
9
}
10
],
11
"require": {
12
- "laravel/framework": "^6.0"
+ "php": "^7.2"
13
},
14
"require-dev": {
15
- "laravel/laravel": "^6.0",
16
- "phpunit/phpunit": "^7.5"
+ "phpunit/phpunit": "^8.3",
+ "orchestra/testbench": "^4.0"
17
18
"autoload": {
19
"psr-4": {
@@ -25,4 +25,4 @@
25
"geekcom\\ValidatorDocs\\Tests\\": "tests"
26
27
28
-}
+}
tests/ValidatorTestCase.php
@@ -1,8 +1,12 @@
1
<?php
2
3
+namespace geekcom\ValidatorDocs\Tests;
4
+
5
+use Orchestra\Testbench\TestCase;
6
7
abstract class ValidatorTestCase extends TestCase
8
{
- public function setUp()
+ public function setUp(): void
parent::setUp();
tests/bootstrap.php
0 commit comments