PHPackages                             shawnsandy/deploykit - 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. [DevOps &amp; Deployment](/categories/devops)
4. /
5. shawnsandy/deploykit

ActiveLibrary[DevOps &amp; Deployment](/categories/devops)

shawnsandy/deploykit
====================

Laravel deploy kit

v0.0.2(9y ago)09MITPHPPHP ~5.6|~7.0

Since Feb 19Pushed 9y ago1 watchersCompare

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

READMEChangelog (2)Dependencies (3)Versions (4)Used By (0)

Deploykit
=========

[](#deploykit)

[![Latest Version on Packagist](https://camo.githubusercontent.com/d47003dac7ee0c31b8d8c8535cf8b3ade28477de791b823ed3458bda8c42913a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f736861776e73616e64792f6465706c6f796b69742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/shawnsandy/deploykit)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Total Downloads](https://camo.githubusercontent.com/71031423c771e50cf36e237f1858f1df9c737eace2dc3d1ecd170800bc99b0ea/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f736861776e73616e64792f6465706c6f796b69742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/shawnsandy/deploykit)

Use Laravel [Collective's Remote (SSH)](https://laravelcollective.com/docs/5.3/ssh) package to depoly your websites with the click of a button. Works on PC/MAC/Linux.

### Screenshot

[](#screenshot)

[![alt text](deploy-kit.png "Logo Title Text 1")](deploy-kit.png)

Install
-------

[](#install)

Via Composer

```
$ composer require shawnsandy/deploykit
```

Usage
-----

[](#usage)

---

#### Quick Start

[](#quick-start)

**Install the service provider**

Add the DeploykitServiceProvider to the `config/app.php`

```
'providers' => [
    /*
    * Package Service Providers...
    */

    //...

    ShawnSandy\Deploykit\DeploykitServicesProvider::class,
    Collective\Remote\RemoteServiceProvider::class,

    //...

    ]
```

Next add the Facade to you `config.php`

```
 'aliases' => [
    // ...
      'SSH' => Collective\Remote\RemoteFacade::class,
    // ...
  ],
```

**Publish vendor/packages assets**

You can publish vendor files individually using `--tag` option or all using `--provider`

**Assets**

```
php artisan vendor:publish --tag=deploykit-assets
```

**Views**

```
php artisan vendor:publish --tag=deploykit-views
```

**Config**

```
php artisan vendor:publish --tag=deploykit-config
```

**Migrations**

```
php artisan vendor:publish --tag=deploykit-migrations

```

**Provider**

Publishes all vendor files

```
php artisan vendor:publish --provider="ShawnSandy\Deploykit\DeploykitServicesProvider"
```

**Add the dollowing lines to your `routes\web.php`**

```
    Route::group(['prefix' => 'deploy', 'middleware' => 'auth'], function (){

        Route::resource('/', '\ShawnSandy\Deploykit\Controllers\DeployKitController');
        Route::get('/connection/{connection}', '\ShawnSandy\Deploykit\Controllers\DeployController');

    });
```

### Config options

[](#config-options)

```
return [

    'commands' => [

        "default" => ['cd /var/www', 'git pull', 'php artisan cache:clear'],

        "migrate" => ['cd /var/www', 'git pull', 'php artisan migrate', 'php artisan cache:clear'],

        "update" => ['cd /var/www', 'git pull', 'composer update', 'php artisan migrate', 'php artisan cache:clear'],

    ],

    'limit_responses' => 200,

    'responses_per_page' => 20,

];
```

**Setup and configure Remote (SSH)** [\#Config](https://laravelcollective.com/docs/5.3/ssh#configuration)

### Advanced Usage

[](#advanced-usage)

Soon

Change log
----------

[](#change-log)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Testing
-------

[](#testing)

```
$ composer test
```

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) and [CONDUCT](CONDUCT.md) for details.

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [Shawn Sandy](https://github.com/shawnsandy)
- \[All Contributors\]\[link-contributors\]

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

22

—

LowBetter than 21% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity50

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

3418d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/28913?v=4)[Shawn Sandy](/maintainers/shawnsandy)[@shawnsandy](https://github.com/shawnsandy)

---

Top Contributors

[![shawnsandy](https://avatars.githubusercontent.com/u/28913?v=4)](https://github.com/shawnsandy "shawnsandy (15 commits)")

---

Tags

laravel-5-packagelaravleshawnsandydeploykit

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/shawnsandy-deploykit/health.svg)

```
[![Health](https://phpackages.com/badges/shawnsandy-deploykit/health.svg)](https://phpackages.com/packages/shawnsandy-deploykit)
```

###  Alternatives

[ryoluo/sail-ssl

Laravel Sail plugin to enable SSL (HTTPS) connection with Nginx.

192739.0k3](/packages/ryoluo-sail-ssl)[tiamo/phpas2

PHPAS2 is a php-based implementation of the EDIINT AS2 standard

4676.9k](/packages/tiamo-phpas2)[wapmorgan/php-rpm-packager

RPM packager for PHP applications.

116.5k](/packages/wapmorgan-php-rpm-packager)

PHPackages © 2026

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