File tree 4 files changed +36
-8
lines changed
4 files changed +36
-8
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## v0.6.0 (2020-05-13)
4
+ ### Changed
5
+ - Update composer dependencies ([ #11 ] ( https://github.com/thepinecode/blade-filters/pull/11 ) )
6
+
3
7
## v0.5.0 (2020-01-15)
4
8
### Changed
5
9
- Upgrade testbench version
Original file line number Diff line number Diff line change 24
24
"illuminate/support" : " ^6.0 || ^7.0"
25
25
},
26
26
"require-dev" : {
27
- "orchestra/testbench" : " ~5.0.0"
27
+ "laravel/laravel" : " dev-master" ,
28
+ "phpunit/phpunit" : " ^9.0"
28
29
},
29
30
"extra" : {
30
31
"laravel" : {
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ namespace Pine \BladeFilters \Tests ;
4
+
5
+ use Illuminate \Contracts \Console \Kernel ;
6
+ use Pine \BladeFilters \BladeFiltersServiceProvider ;
7
+
8
+ trait CreatesApplication
9
+ {
10
+ /**
11
+ * Creates the application.
12
+ *
13
+ * @return \Illuminate\Foundation\Application
14
+ */
15
+ public function createApplication ()
16
+ {
17
+ $ app = require __DIR__ .'/../vendor/laravel/laravel/bootstrap/app.php ' ;
18
+
19
+ $ app ->booting (function () use ($ app ) {
20
+ $ app ->register (BladeFiltersServiceProvider::class);
21
+ });
22
+
23
+ $ app ->make (Kernel::class)->bootstrap ();
24
+
25
+ return $ app ;
26
+ }
27
+ }
Original file line number Diff line number Diff line change 2
2
3
3
namespace Pine \BladeFilters \Tests ;
4
4
5
+ use Illuminate \Foundation \Testing \TestCase as BaseTestCase ;
5
6
use Illuminate \Support \Facades \Route ;
6
7
use Illuminate \Support \Facades \View ;
7
- use Orchestra \Testbench \TestCase as BaseTestCase ;
8
- use Pine \BladeFilters \BladeFiltersServiceProvider ;
9
8
10
9
abstract class TestCase extends BaseTestCase
11
10
{
11
+ use CreatesApplication;
12
+
12
13
public function setUp (): void
13
14
{
14
15
parent ::setUp ();
@@ -19,9 +20,4 @@ public function setUp(): void
19
20
return view ("blade-filters:: {$ filter }" );
20
21
});
21
22
}
22
-
23
- protected function getPackageProviders ($ app )
24
- {
25
- return [BladeFiltersServiceProvider::class];
26
- }
27
23
}
You can’t perform that action at this time.
0 commit comments