Skip to content

Commit 06bf215

Browse files
authored
Merge pull request #18 from dicoding-dev/improvement/update-php-sec-lib
[Improvement] Remove Laravel's built-in remote SSH
2 parents 2286fc8 + 35284c6 commit 06bf215

15 files changed

Lines changed: 4 additions & 1320 deletions

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,6 @@ composer.lock
44
.DS_Store
55
Thumbs.db
66
.idea/
7-
.phpunit.result.cache
7+
.phpunit.result.cache
8+
.direnv
9+
.envrc

composer.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
"nesbot/carbon": "^2.71",
2020
"opis/closure": "~3.6",
2121
"pda/pheanstalk": "~4.0",
22-
"phpseclib/phpseclib": "~2.0",
2322
"predis/predis": "^1.1",
2423
"symfony/browser-kit": "~6.4",
2524
"symfony/console": "~6.4",
@@ -59,7 +58,6 @@
5958
"illuminate/pagination": "self.version",
6059
"illuminate/queue": "self.version",
6160
"illuminate/redis": "self.version",
62-
"illuminate/remote": "self.version",
6361
"illuminate/routing": "self.version",
6462
"illuminate/session": "self.version",
6563
"illuminate/support": "self.version",

src/Illuminate/Foundation/Application.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1142,7 +1142,6 @@ public function registerCoreContainerAliases()
11421142
'router' => 'Illuminate\Routing\Router',
11431143
'session' => 'Illuminate\Session\SessionManager',
11441144
'session.store' => 'Illuminate\Session\Store',
1145-
'remote' => 'Illuminate\Remote\RemoteManager',
11461145
'url' => 'Illuminate\Routing\UrlGenerator',
11471146
'validator' => 'Illuminate\Validation\Factory',
11481147
'view' => 'Illuminate\View\Factory',

src/Illuminate/Foundation/Console/TailCommand.php

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

src/Illuminate/Foundation/Providers/ArtisanServiceProvider.php

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
use Illuminate\Foundation\Artisan;
44
use Illuminate\Support\ServiceProvider;
5-
use Illuminate\Foundation\Console\TailCommand;
65
use Illuminate\Foundation\Console\ChangesCommand;
76
use Illuminate\Foundation\Console\EnvironmentCommand;
87

@@ -27,11 +26,6 @@ public function register()
2726
return new Artisan($app);
2827
});
2928

30-
$this->app->bindShared('command.tail', function()
31-
{
32-
return new TailCommand;
33-
});
34-
3529
$this->app->bindShared('command.changes', function()
3630
{
3731
return new ChangesCommand;
@@ -42,7 +36,7 @@ public function register()
4236
return new EnvironmentCommand;
4337
});
4438

45-
$this->commands('command.tail', 'command.changes', 'command.environment');
39+
$this->commands( 'command.changes', 'command.environment');
4640
}
4741

4842
/**

0 commit comments

Comments
 (0)