PHPackages                             nlmenke/deploy-version - 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. nlmenke/deploy-version

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

nlmenke/deploy-version
======================

Automatically update application versions by deploying.

1.2.0(7y ago)2561MITPHPPHP &gt;=7.0.0

Since Aug 20Pushed 3y ago1 watchersCompare

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

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

Deploy Version
--------------

[](#deploy-version)

Automatically update application versions by deploying.

[![Total Downloads](https://camo.githubusercontent.com/afa51c1bf5961e56fff3cb4937f60e2f73d27430bbc63c7c19e4ecdf077bbada/68747470733a2f2f706f7365722e707567782e6f72672f6e6c6d656e6b652f6465706c6f792d76657273696f6e2f646f776e6c6f616473)](https://packagist.org/packages/nlmenke/deploy-version)[![Latest Stable Version](https://camo.githubusercontent.com/02017eaa24ecd4995c848efe5b3de5f9cc920cbd51cda98c4833e1f121970eeb/68747470733a2f2f706f7365722e707567782e6f72672f6e6c6d656e6b652f6465706c6f792d76657273696f6e2f762f737461626c65)](https://packagist.org/packages/nlmenke/deploy-version)[![Latest Unstable Version](https://camo.githubusercontent.com/df92f168402884bc4d966a0cf2eecd71a7107aca605ac4b2e74724470644ffeb/68747470733a2f2f706f7365722e707567782e6f72672f6e6c6d656e6b652f6465706c6f792d76657273696f6e2f762f756e737461626c65)](https://packagist.org/packages/nlmenke/deploy-version)[![License](https://camo.githubusercontent.com/48e564af0d5b4d52f985bf43187db91fbdcf771426ee6e345d9da0ee175f87d7/68747470733a2f2f706f7365722e707567782e6f72672f6e6c6d656e6b652f6465706c6f792d76657273696f6e2f6c6963656e7365)](https://github.com/nlmenke/deploy-version/blob/master/LICENSE.md)

This package works similar to migrations in that you will need to generate a deployment file for each feature. Then, you can deploy all new features at once.

### Installation

[](#installation)

This package can be installed through Composer:

```
composer require nlmenke/deploy-version
```

In Laravel 5.5 and above, the package will auto-register the service provider. In Laravel 5.4, you must install the service provider manually:

```
// config/app.php
'providers' => [
    ...
    NLMenke\DeployVersion\DeployVersionServiceProvider::class,
    ...
];
```

In Laravel 5.5 and above, the package will auto-register the facade. In Laravel 5.4, you must install the facade manually:

```
// config/app.php
'aliases' => [
    ...
    NLMenke\DeployVersion\DeployVersionFacade::class
    ...
];
```

Optionally, you can publish the config file of the package:

```
php artisan vendor:publish --provider="NLMenke\DeployVersion\DeployVersionServiceProvider"
```

The following config file will be published in `config/deploy-version.php`:

```
