https://github.com/emir/laravel-webartisan
Web artisan allows to run artisan console commands using a browser
https://github.com/emir/laravel-webartisan
Last synced: 6 months ago
JSON representation
Web artisan allows to run artisan console commands using a browser
- Host: GitHub
- URL: https://github.com/emir/laravel-webartisan
- Owner: emir
- Created: 2015-08-09T00:02:06.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-08-28T07:24:54.000Z (almost 11 years ago)
- Last Synced: 2026-01-13T07:29:44.848Z (7 months ago)
- Language: CSS
- Size: 262 KB
- Stars: 36
- Watchers: 4
- Forks: 4
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Laravel 5 Web Artisan
=================
Web artisan allows to run `artisan` console commands using a browser. Laravel port for [samdark/yii2-webshell](https://github.com/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:
```php
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
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
-------------
[MIT License](http://emir.mit-license.org/)