File tree Expand file tree Collapse file tree 4 files changed +2
-145
lines changed Expand file tree Collapse file tree 4 files changed +2
-145
lines changed Original file line number Diff line number Diff line change 19
19
"ext-posix" : " *" ,
20
20
"laravel/prompts" : " ^0.1.21|^0.2|^0.3" ,
21
21
"joetannenbaum/chewie" : " ^0.1" ,
22
- "soloterm/grapheme" : " ^1"
22
+ "soloterm/grapheme" : " ^1" ,
23
+ "soloterm/dumps" : " ^1.0.0"
23
24
},
24
25
"require-dev" : {
25
26
"illuminate/database" : " ^10|^11|^12" ,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11
11
12
12
use Illuminate \Support \ServiceProvider ;
13
13
use SoloTerm \Solo \Console \Commands \About ;
14
- use SoloTerm \Solo \Console \Commands \Dumps ;
15
14
use SoloTerm \Solo \Console \Commands \Install ;
16
15
use SoloTerm \Solo \Console \Commands \Make ;
17
16
use SoloTerm \Solo \Console \Commands \Monitor ;
18
17
use SoloTerm \Solo \Console \Commands \Solo ;
19
18
use SoloTerm \Solo \Manager ;
20
- use SoloTerm \Solo \Support \CustomDumper ;
21
19
22
20
class SoloServiceProvider extends ServiceProvider
23
21
{
@@ -30,8 +28,6 @@ public function register()
30
28
31
29
public function boot ()
32
30
{
33
- $ this ->registerDumper ();
34
-
35
31
if (!$ this ->app ->runningInConsole ()) {
36
32
return ;
37
33
}
@@ -48,7 +44,6 @@ protected function registerCommands()
48
44
Install::class,
49
45
About::class,
50
46
Make::class,
51
- Dumps::class
52
47
]);
53
48
54
49
if (class_exists ('\SoloTerm\Solo\Console\Commands\Test ' )) {
@@ -58,11 +53,6 @@ protected function registerCommands()
58
53
}
59
54
}
60
55
61
- protected function registerDumper ()
62
- {
63
- CustomDumper::register ($ this ->app ->basePath (), $ this ->app ['config ' ]->get ('view.compiled ' ));
64
- }
65
-
66
56
protected function publishFiles ()
67
57
{
68
58
$ this ->publishes ([
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments