File tree Expand file tree Collapse file tree 2 files changed +35
-1
lines changed
Expand file tree Collapse file tree 2 files changed +35
-1
lines changed Original file line number Diff line number Diff line change 4141 },
4242 "autoload" : {
4343 "psr-4" : {
44- "Uepg\\ LaravelSybase\\ " : " src/"
44+ "Uepg\\ LaravelSybase\\ " : " src/" ,
45+ "Tests\\ " : " tests/"
4546 }
4647 },
4748 "scripts" : {
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ namespace Tests ;
4+
5+ use Illuminate \Foundation \Application ;
6+ use Illuminate \Support \ServiceProvider ;
7+
8+ class TestCase extends \Orchestra \Testbench \TestCase
9+ {
10+ /**
11+ * Get package providers.
12+ *
13+ * @param Application $app
14+ *
15+ * @return array<int, class-string<ServiceProvider>>
16+ */
17+ protected function getPackageProviders ($ app )
18+ {
19+ return ['SybaseServiceProvider ' ,];
20+ }
21+
22+ /**
23+ * Ignore package discovery from.
24+ *
25+ * @return array<int, string>
26+ */
27+ public function ignorePackageDiscoveriesFrom ()
28+ {
29+ return [];
30+ }
31+
32+
33+ }
You can’t perform that action at this time.
0 commit comments