PHPackages                             efrane/laravel-deploy - 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. efrane/laravel-deploy

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

efrane/laravel-deploy
=====================

v2.3.1(8y ago)0515—0%MITPHPPHP &gt;=5.6

Since Jan 4Pushed 8y ago1 watchersCompare

[ Source](https://github.com/eFrane/laravel-deploy)[ Packagist](https://packagist.org/packages/efrane/laravel-deploy)[ RSS](/packages/efrane-laravel-deploy/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependencies (5)Versions (14)Used By (0)

**This project has been abandoned and will no longer be maintened.**

Laravel Deploy
==============

[](#laravel-deploy)

This package provides the `artisan deploy`-command and aims to simplify the deployment process of Laravel 5 applications.

Installation
------------

[](#installation)

`laravel-deploy` is available as a composer package, you can thus install it with `composer require efrane/laravel-deploy`.

As this is a Laravel package, it will only make sense in a Laravel application. Also, don't forget to add the service provider to your `app.php` config:

```
  $providers = [
      ...

      EFrane\Deploy\DeployServiceProvider::class,
  ];
```

Usage
-----

[](#usage)

This package registers the `./artisan deploy` command. The default configuration only runs the `--optimize`-option as described in the Options section below.

Default options can be changed in the `laraveldeploy.php` config file which is providable via `./artisan vendor:publish`. If so desired, additional console commands can be added to the deploy process by simply adding their command line call strings (see [`Command::call()`](https://laravel.com/docs/5.1/artisan#calling-commands-via-code)) to the `additonalCommands` config option like so:

```
