這是一個將artisan移植到web介面的package, 並增加了一些自定義的command 在server不支援bash shell時,還能執行一些aritsan的命令
Laravel Web Artisan
Installation
Add Presenter to your composer.json file:
"require": {
"recca0120/terminal": "^1.3.3"
}
Now, run a composer update on the command line from the root of your project:
composer update
Registering the Package
Include the service provider within app/config/app.php
. The service povider is needed for the generator artisan command.
'providers' => [
...
Recca0120\Terminal\ServiceProvider::class,
...
];
publish
artisan vendor:publish --provider="Recca0120\Terminal\ServiceProvider"
URL
http://localhost/path/to/terminal
Whitelist
return [
'whitelists' => ['127.0.0.1', 'your ip'],
];
Available Commands
- artisan
- artisan tinker
- find
- mysql
Find
not full support, but you can delete file use this function (please check file permission)
find ./vendor -name tests -type d -maxdepth 4 -delete
Add Your Command
Add Command Class
// src/Console/Commands/Mysql.php
namespace Recca0120\Terminal\Console\Commands;
use Illuminate\Console\Command;
use Illuminate\Foundation\Inspiring;
class Inspire extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'inspire';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Display an inspiring quote';
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
$this->comment(PHP_EOL.Inspiring::quote().PHP_EOL);
}
}
Add Command
// src/Console/Kernel.php
namespace Recca0120\Terminal\Console;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
use Recca0120\Terminal\Console\Application as Artisan;
class Kernel extends ConsoleKernel
{
/**
* The Artisan commands provided by your application.
*
* @var array
*/
protected $commands = [
Commands\Inspire::class,
];
}
ScreenShot
Available Commands
$ help
Artisan List
$ artisan
Migrate
$ artisan migrate --seed
Artisan Tinker
$ artisan tinker
Find Command
$ find ./ -name * -maxdepth 1
Find and Delete
$ find ./storage/logs -name * -maxdepth 1 -delete
Vi
$ vi server.php
Tail
$ tail
$ tail --line=1
$ tail server.php
$ tail server.php --line 5
Cleanup
$ cleanup
沒有留言:
張貼留言