PHPackages                             eduardoledo/server-sync-bundle - 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. eduardoledo/server-sync-bundle

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

eduardoledo/server-sync-bundle
==============================

A small Symfony3 bundle for syncing your project with different servers (dev, staging, prod) via rsync

09PHP

Since Nov 21Pushed 9y ago1 watchersCompare

[ Source](https://github.com/eduardoledo/server-sync-bundle)[ Packagist](https://packagist.org/packages/eduardoledo/server-sync-bundle)[ RSS](/packages/eduardoledo-server-sync-bundle/feed)WikiDiscussions master Synced 4w ago

READMEChangelogDependenciesVersions (1)Used By (0)

EduardoLedoServerSyncBundle
===========================

[](#eduardoledoserversyncbundle)

- Simple bundle for syncing your project with multiple servers (dev, staging, prod) via rsync.

Installation:
-------------

[](#installation)

### Step 1: Download the bundle

[](#step-1-download-the-bundle)

Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle

```
$ composer require eduardoledo/server-sync-bundle

```

### Step 2: Enable the bundle in AppKernel.php

[](#step-2-enable-the-bundle-in-appkernelphp)

```
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new EduardoLedo\ServerSyncBundle(),
    );
}
```

### Step 3: Configure the bundle

[](#step-3-configure-the-bundle)

```
# app/config/parameters.yml
parameters:
    ...

eduardo_ledo_server_sync:
    servers:
        myserver:
            user: myuser                            # optional
            password: mypassword                    # optional
            host: host.example.com                  # required
            destination_dir: /home/myuser/dest_dir  # required
            exclude:                                # optional
                - dir1
                - dir2/*
                - dir3/*.ext
            exclude-from:                           # optional
                - file1
                - file2
                - fileN
```

Usage:
------

[](#usage)

You can list the configured servers from the console:

```
$ bin/console eduardoledo:server-sync:list-servers

```

This will output something like:

```

+------+------------+--------+--------+--------------------------+
| Name | Host       | User   | Pass   | Dest. dir                |
+------+------------+--------+--------+--------------------------+
| dev  | localhost  |        |        | /var/www/mysite.dev/     |
| prod | mysyte.com | myuser | mypass | /home/myuser/mysyte.com/ |
+------+------------+--------+--------+--------------------------+

```

Then you can:

- Perform a dry run:

```
$ bin/console eduardoledo:server-sync:upload --server=dev --dry-run

```

- Upload the files to one server:

```
$ bin/console eduardoledo:server-sync:upload --server=dev

```

- Upload the files to multiple servers:

```
$ bin/console eduardoledo:server-sync:upload --server=dev --server=prod

```

---

###  Health Score

20

—

LowBetter than 13% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity41

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.

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/5150589?v=4)[Eduardo Ledo ](/maintainers/eduardoledo)[@eduardoledo](https://github.com/eduardoledo)

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/eduardoledo-server-sync-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/eduardoledo-server-sync-bundle/health.svg)](https://phpackages.com/packages/eduardoledo-server-sync-bundle)
```

###  Alternatives

[illuminate/console

The Illuminate Console package.

13046.0M6.4k](/packages/illuminate-console)[styleci/cli

The CLI tool for StyleCI

71470.5k9](/packages/styleci-cli)[winbox/args

Windows command-line formatter

20720.9k21](/packages/winbox-args)[macopedia/magento2-categoryimporter

Category Importer for Magento 2

344.7k](/packages/macopedia-magento2-categoryimporter)

PHPackages © 2026

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