emir/laravel-webartisan
最新稳定版本:1.0.0
Composer 安装命令:
composer require emir/laravel-webartisan
包简介
Web artisan allows to run artisan console commands using a browser
README 文档
README
Web artisan allows to run artisan console commands using a browser. Laravel port for samdark/yii2-webshell.
Installation
Require this package with composer:
composer require emir/laravel-webartisan
After updating composer, because of the security reasons you need to check environment is local. So you can add the ServiceProvider to app/Providers/AppServiceProvider.php like this:
public function register() { if ($this->app->environment() == 'local') { $this->app->register('Emir\Webartisan\WebartisanServiceProvider'); } }
Copy the package assets to your local with the publish command:
php artisan vendor:publish --provider="Emir\Webartisan\WebartisanServiceProvider"
Usage
After installation you will be able to access web artisan in your browser using the URL:
http://localhost/path/to/artisan
License
统计信息
- 总下载量: 435
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 36
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-08-09
