PHPackages                             cedricziel/l5-webartisan - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [CLI &amp; Console](/categories/cli)
4. /
5. cedricziel/l5-webartisan

ActiveLibrary[CLI &amp; Console](/categories/cli)

cedricziel/l5-webartisan
========================

Artisan for the web. Execute Artisan command on a webpage.

0.0.2(10y ago)164MITPHP

Since Jan 4Pushed 10y ago1 watchersCompare

[ Source](https://github.com/cedricziel/l5-webartisan)[ Packagist](https://packagist.org/packages/cedricziel/l5-webartisan)[ RSS](/packages/cedricziel-l5-webartisan/feed)WikiDiscussions master Synced 4w ago

READMEChangelogDependencies (1)Versions (4)Used By (0)

Webartisan for Laravel 5
========================

[](#webartisan-for-laravel-5)

Provides a browser-based artisan console for your application.

Warning!
--------

[](#warning)

**This addon is insecure by default! You need to secure the endpoints or strangers *will* execute commands on your application.**

Configuration
-------------

[](#configuration)

Add the ServiceProvider to `config/app.php`:

```
    CedricZiel\Webartisan\WebartisanServiceProvider:class,
```

Now you need to override the routes shipped by the plugin, to secure them with a middleware of your choice.

Here's an example to secure the endpoints with the `auth` middleware (`app/Providers/RouteServiceProvider`):

```
    /**
     * Define the routes for the application.
     *
     * @param  \Illuminate\Routing\Router $router
     *
     * @return void
     */
    public function map(Router $router)
    {
        $router->group(['namespace' => $this->namespace], function ($router) {
            require app_path('Http/routes.php');
        });

        /**
         * Webartisan routes
         */
        $router->group([
            'namespace'  => '\CedricZiel\Webartisan\Http\Controllers',
            'middleware' => ['web', 'auth']
        ], function ($router) {
            Route::get('artisan', [
                'as'         => 'artisan',
                'middleware' => 'auth',
                'uses'       => 'WebartisanController@show'
            ]);

            Route::post('artisan', [
                'as'         => 'artisan',
                'middleware' => 'auth',
                'uses'       => 'WebartisanController@execute'
            ]);
        });
    }
```

License &amp; Credits
---------------------

[](#license--credits)

This library is based on the work of Ron Shpasser ().

This library is licensed under the MIT License.

###  Health Score

26

—

LowBetter than 41% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

2

Last Release

3830d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/2ac8297e12671d91305ec01ab56add8cb141fa82d678ba96f0012eeb7f88ea0c?d=identicon)[cedricziel](/maintainers/cedricziel)

---

Top Contributors

[![cedricziel](https://avatars.githubusercontent.com/u/418970?v=4)](https://github.com/cedricziel "cedricziel (2 commits)")

---

Tags

laravelartisanlaravel5

### Embed Badge

![Health badge](/badges/cedricziel-l5-webartisan/health.svg)

```
[![Health](https://phpackages.com/badges/cedricziel-l5-webartisan/health.svg)](https://phpackages.com/packages/cedricziel-l5-webartisan)
```

###  Alternatives

[nunomaduro/laravel-console-menu

Laravel Console Menu is an output method for your Laravel/Laravel Zero commands.

815424.6k52](/packages/nunomaduro-laravel-console-menu)[sunaoka/laravel-facade-generator

Provide command line generation of facade layer files.

162.0k](/packages/sunaoka-laravel-facade-generator)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
