Skip to content

Commit 61435ff

Browse files
Remove dumps in favor of new package (#84)
* Remove dumps in favor of new package * Fix code styling [ci skip] --------- Co-authored-by: aarondfrancis <[email protected]>
1 parent 85edb09 commit 61435ff

File tree

4 files changed

+2
-145
lines changed

4 files changed

+2
-145
lines changed

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
"ext-posix": "*",
2020
"laravel/prompts": "^0.1.21|^0.2|^0.3",
2121
"joetannenbaum/chewie": "^0.1",
22-
"soloterm/grapheme": "^1"
22+
"soloterm/grapheme": "^1",
23+
"soloterm/dumps": "^1.0.0"
2324
},
2425
"require-dev": {
2526
"illuminate/database": "^10|^11|^12",

src/Console/Commands/Dumps.php

Lines changed: 0 additions & 49 deletions
This file was deleted.

src/Providers/SoloServiceProvider.php

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,11 @@
1111

1212
use Illuminate\Support\ServiceProvider;
1313
use SoloTerm\Solo\Console\Commands\About;
14-
use SoloTerm\Solo\Console\Commands\Dumps;
1514
use SoloTerm\Solo\Console\Commands\Install;
1615
use SoloTerm\Solo\Console\Commands\Make;
1716
use SoloTerm\Solo\Console\Commands\Monitor;
1817
use SoloTerm\Solo\Console\Commands\Solo;
1918
use SoloTerm\Solo\Manager;
20-
use SoloTerm\Solo\Support\CustomDumper;
2119

2220
class SoloServiceProvider extends ServiceProvider
2321
{
@@ -30,8 +28,6 @@ public function register()
3028

3129
public function boot()
3230
{
33-
$this->registerDumper();
34-
3531
if (!$this->app->runningInConsole()) {
3632
return;
3733
}
@@ -48,7 +44,6 @@ protected function registerCommands()
4844
Install::class,
4945
About::class,
5046
Make::class,
51-
Dumps::class
5247
]);
5348

5449
if (class_exists('\SoloTerm\Solo\Console\Commands\Test')) {
@@ -58,11 +53,6 @@ protected function registerCommands()
5853
}
5954
}
6055

61-
protected function registerDumper()
62-
{
63-
CustomDumper::register($this->app->basePath(), $this->app['config']->get('view.compiled'));
64-
}
65-
6656
protected function publishFiles()
6757
{
6858
$this->publishes([

src/Support/CustomDumper.php

Lines changed: 0 additions & 85 deletions
This file was deleted.

0 commit comments

Comments
 (0)