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

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

quiborgue/laravel-deploy
========================

Usefull deployment tools for Laravel

0.1.2(11y ago)1527MITPHPPHP &gt;=5.4.0

Since Jun 18Pushed 11y ago2 watchersCompare

[ Source](https://github.com/quiborgue/php-laravel-deploy)[ Packagist](https://packagist.org/packages/quiborgue/laravel-deploy)[ RSS](/packages/quiborgue-laravel-deploy/feed)WikiDiscussions master Synced yesterday

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

Laravel Deploy
--------------

[](#laravel-deploy)

### Usage:

[](#usage)

Begin by installing this package through Composer. Edit your project's `composer.json` file to require `quiborgue/laravel-deploy`.

```
"require-dev": {
    "quiborgue/laravel-deploy": "dev-master"
}

```

Next, update Composer from the Terminal:

```
composer update --dev

```

Once this operation completes, the final step is to add the service provider. Open `app/config/local/app.php`, and add a new item to the providers array.

```
'Quiborgue\LaravelDeploy\LaravelDeployServiceProvider'

```

That's it! You're all set to go. Run the `artisan` command from the Terminal to see the new `generate` commands.

```
php artisan

```

Server initial setup
--------------------

[](#server-initial-setup)

```
# Login to your server
local # ssh root@remote
    remote# sudo locale-gen pt_BR.UTF-8
    remote# sudo dpkg-reconfigure locales

# Update system
remote# apt-get update
remote#	apt-get upgrade

# Update kernel
remote#	apt-get dist-upgrade
remote#	shutdown -r now
remote#	apt-get autoremove

# Check if everything is updated
remote#	apt-get update
remote#	apt-get upgrade

# Install PHP and Database packages
remote#	apt-get install libapache2-mod-php5
remote#	apt-get install php5-mcrypt php5-curl
remote#	apt-get install [php5-sqlite|php5-pgsql postgresql|php-mysql mysql-server]

# Install deployment packages
remote# apt-get install git
remote# curl -sS https://getcomposer.org/installer | php
remote# mv composer.phar /usr/bin/composer
remote# php5enmod mcrypt
remote# a2enmod rewrite

# Create deployment user
remote#	useradd deploy
remote#	mkdir /home/deploy
remote#	chown deploy.deploy /home/deploy
remote#	chmod 700 /home/deploy

# Configure deployment user ssh access
remote#	mkdir /home/deploy/.ssh
remote#	chown deploy.deploy /home/deploy/.ssh
remote#	chmod 700 /home/deploy/.ssh
remote#	echo "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDU0k/rbeaqT87Ac7LPemJGgy55E8VraWeHjobrboUR6tPutqwqykGg3aND5jRMttbBXO2HJYjD7TocHRKVdMX5LFx34mI4MDMaFTHZ1nzyfKbZ0YdjYGafSzXBjC/kKZYCQNTaTjkQ54Y4ouGVs48xvW1h7FJF8lg474FY3xfhpo9WasJI6GyWIJbLPJyRz/VN7PqN+s2ruQdowvMsHCAFbv4SKdXXbFvThVaYPqGc9vH574IWS1ZOekRnqhjs0PUAFsPtN+T5hTUPkB0cQ+MJzjN9AZnX5G0zXoeM2u+WwQwyKT2bqht92ePOjF+pNNAeiWZPd2bM6wRwstoCvnS7" >> /home/deploy/.ssh/authorized_keys
remote#	chmod 600 /home/deploy/.ssh/authorized_keys
remote#	chown deploy.deploy /home/deploy/.ssh/authorized_keys
remote#	exit
local # ssh -i ~/.ssh/deploy.pem deploy@remote
remote$ exit

# Configure PHP application folder
remote#	chown deploy.www-data /var/www
remote#	chmod g+s /var/www

# Configure Composer dependencies
remote#	su deploy
remote#	composer global require "fxp/composer-asset-plugin:dev-master"
    remote#   exit

    # Configure swap memory
    remote#  fallocate -l 4G /swapfile
    remote#  chmod 600 /swapfile
    remote#  mkswap /swapfile
    remote#  echo "/swapfile   none    swap    sw    0   0" >> /etc/fstab
    remote#  shutdown -r now

# Exit and teste your deploy
remote# exit
local # cd /laravel/project/path
local # php artisan deploy

```

###  Health Score

25

—

LowBetter than 35% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community8

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

3

Last Release

4032d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/607528?v=4)[Carlos Augusto Borges](/maintainers/calimaborges)[@calimaborges](https://github.com/calimaborges)

---

Top Contributors

[![calimaborges](https://avatars.githubusercontent.com/u/607528?v=4)](https://github.com/calimaborges "calimaborges (21 commits)")

### Embed Badge

![Health badge](/badges/quiborgue-laravel-deploy/health.svg)

```
[![Health](https://phpackages.com/badges/quiborgue-laravel-deploy/health.svg)](https://phpackages.com/packages/quiborgue-laravel-deploy)
```

PHPackages © 2026

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