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 ae548fd commit 546f1edCopy full SHA for 546f1ed
composer.json
@@ -14,6 +14,11 @@
14
"Codecasts\\Auth\\JWT\\": "src/"
15
}
16
},
17
+ "autoload-dev": {
18
+ "psr-4": {
19
+ "Tests\\": "tests/"
20
+ }
21
+ },
22
"minimum-stability": "stable",
23
"require": {
24
"php": ">=7.0.0",
tests/Auth/GuardTest.php
@@ -0,0 +1,10 @@
1
+<?php
2
+
3
+namespace Tests\Auth\Guard;
4
5
+use Tests\TestCase;
6
7
+class GuardTest extends TestCase
8
+{
9
10
+}
tests/TestCase.php
@@ -0,0 +1,8 @@
+namespace Tests;
+class TestCase extends \Orchestra\Testbench\TestCase
0 commit comments