PHPackages                             mk-conn/shellax - 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. mk-conn/shellax

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

mk-conn/shellax
===============

Some shell helper commands for laravel applications

0.3.9(8y ago)06281MITPHPPHP &gt;=7.0

Since Jun 27Pushed 8y ago1 watchersCompare

[ Source](https://github.com/mk-conn/shellax)[ Packagist](https://packagist.org/packages/mk-conn/shellax)[ Docs](https://github.com/mk-conn/shellax)[ RSS](/packages/mk-conn-shellax/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (10)Dependencies (3)Versions (15)Used By (1)

Shellax
=======

[](#shellax)

[![Latest Version on Packagist](https://camo.githubusercontent.com/e47b5fd9742cd16674bc5afeaa5b2f8bbeaffeefff552eff13cdeb1468536d2b/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f3a76656e646f722f3a7061636b6167655f6e616d652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/:vendor/:package_name)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/cb11179311e640818ab161382ab46616c3056e3374c94f90fdc6d06a309cf73b/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f3a76656e646f722f3a7061636b6167655f6e616d652f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/:vendor/:package_name)[![Coverage Status](https://camo.githubusercontent.com/77bd9748066a4737af2be4a15b71865967905bfc6aa38aabed0996acb7fb2bbb/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f3a76656e646f722f3a7061636b6167655f6e616d652e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/:vendor/:package_name/code-structure)[![Quality Score](https://camo.githubusercontent.com/5ea237d9c7d6af5499007b76e317965f8bdfa4596fd71c22cd7fe2cb818594cc/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f3a76656e646f722f3a7061636b6167655f6e616d652e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/:vendor/:package_name)[![Total Downloads](https://camo.githubusercontent.com/2e7d96ffc3c5f08e269c45f38de91ce489968312df30848d817105c5ada0d9cc/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f3a76656e646f722f3a7061636b6167655f6e616d652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/:vendor/:package_name)

Laravel package to ease deployments - running tasks after deploy/install like cache cleaning, adding supervisor programms ...

Install
-------

[](#install)

Via Composer

```
$ composer require mk-conn/shellax
```

Usage
-----

[](#usage)

In your `config/app.php` add the Shellax service provider like so:

```
'providers' => // ... other providers

    MkConn\Shellax\Providers\ShellaxServiceProvider::class,

```

Publish the shellax config

```
php artisan vendor:publish --provider="MkConn\Shellax\Providers\ShellaxServiceProvider"
```

Available artisan commands

```
php artisan shellax:postintall
php artisan shellax:supervisor-register
php artisan shellax:setup-cron
```

### Configuration

[](#configuration)

Example configuration

```
