Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[5.4] Moved tinker out to an external package #17002

Merged
merged 1 commit into from
Dec 28, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -26,7 +26,6 @@
"mtdowling/cron-expression": "~1.0",
"nesbot/carbon": "~1.20",
"paragonie/random_compat": "~1.4|~2.0",
"psy/psysh": "0.7.*|0.8.*",
"ramsey/uuid": "~3.0",
"swiftmailer/swiftmailer": "~5.1",
"symfony/console": "~3.2",
@@ -105,6 +104,7 @@
"doctrine/dbal": "Required to rename columns and drop SQLite columns (~2.4).",
"fzaninotto/faker": "Required to use the eloquent factory builder (~1.4).",
"guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers and the ping methods on schedules (~5.3|~6.0).",
"laravel/tinker": "Required to use the tinker console command (~1.0).",
"league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (~1.0).",
"league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (~1.0).",
"pda/pheanstalk": "Required to use the beanstalk queue driver (~3.0).",
98 changes: 0 additions & 98 deletions src/Illuminate/Foundation/Console/IlluminateCaster.php

This file was deleted.

100 changes: 0 additions & 100 deletions src/Illuminate/Foundation/Console/TinkerCommand.php

This file was deleted.

14 changes: 0 additions & 14 deletions src/Illuminate/Foundation/Providers/ArtisanServiceProvider.php
Original file line number Diff line number Diff line change
@@ -10,7 +10,6 @@
use Illuminate\Auth\Console\ClearResetsCommand;
use Illuminate\Cache\Console\CacheTableCommand;
use Illuminate\Foundation\Console\ServeCommand;
use Illuminate\Foundation\Console\TinkerCommand;
use Illuminate\Queue\Console\FailedTableCommand;
use Illuminate\Foundation\Console\AppNameCommand;
use Illuminate\Foundation\Console\JobMakeCommand;
@@ -105,7 +104,6 @@ class ArtisanServiceProvider extends ServiceProvider
'ScheduleFinish' => 'Illuminate\Console\Scheduling\ScheduleFinishCommand',
'ScheduleRun' => 'Illuminate\Console\Scheduling\ScheduleRunCommand',
'StorageLink' => 'command.storage.link',
'Tinker' => 'command.tinker',
'Up' => 'command.up',
'ViewClear' => 'command.view.clear',
];
@@ -797,18 +795,6 @@ protected function registerTestMakeCommand()
});
}

/**
* Register the command.
*
* @return void
*/
protected function registerTinkerCommand()
{
$this->app->singleton('command.tinker', function () {
return new TinkerCommand;
});
}

/**
* Register the command.
*