Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor #8

Merged
merged 6 commits into from
Mar 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 10 additions & 9 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
@@ -1,25 +1,26 @@
name: Run Tests

on: [push, pull_request, workflow_dispatch]
on: ['push', 'pull_request']

jobs:
test:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
fail-fast: true
matrix:
php: [8.2, 8.1]
laravel: [10.*]
stability: [prefer-stable]
os: [ubuntu-latest]
php: [8.3, 8.2]
laravel: [11.*]
stability: [prefer-lowest, prefer-stable]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 11.*
testbench: 9.*

name: PHP ${{ matrix.php }} – Laravel ${{ matrix.laravel }} - ${{ matrix.stability }}

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
vendor
composer.lock
.DS_Store
.phpunit.result.cache
.php-cs-fixer.cache
29 changes: 15 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Laravel Sync
This package provides a git-like artisan command to easily sync files and folders between environments. This is super useful for assets, documents, and any other files that are untracked in your git repository.

Laravel Sync is a no-brainer and will soon become best friends with your deploy script. The days are over when you had to manually keep track of files and folders between your environments. Do yourself a favor and give it a try!
Laravel Sync is a no-brainer and the perfect companion for your deploy script. The days are over when you had to manually keep track of files and folders between your environments. Do yourself a favor and give it a try!

## Requirements
- `rsync` on both your source and destination machine
Expand Down Expand Up @@ -78,11 +78,7 @@ return [
*/

'options' => [
// '--archive',
// '--itemize-changes',
// '--verbose',
// '--human-readable',
// '--progress'
'--archive',
],

];
Expand All @@ -92,15 +88,15 @@ return [
To use this package, you have to define at least one remote and recipe.

### Remotes
Each remote consists of a a `user`, a `host` and a `root`. Optionally, you may also define the SSH `port` and define if the remote should be `read_only`.
Each remote consists of a `user`, `host`, and `root`. Optionally, you may also define the SSH `port` and make a remote `read_only`.

| Key | Description |
| ----------- | ---------------------------------------------- |
| `user` | The username to log in to the host |
| `host` | The IP address of your server. |
| `port` | The SSH port to use for this connection |
| `root` | The absolute path to the project's root folder |
| `read_only` | Set to `true` to make the remote read only |
| `read_only` | Set to `true` to make the remote read-only |

```php
'remotes' => [
Expand Down Expand Up @@ -134,7 +130,6 @@ Configure the default rsync options to use when performing a sync. You can overr
```php
'options' => [
'--archive',
'--progress'
],
```

Expand Down Expand Up @@ -168,10 +163,11 @@ You have three commands at your disposal:
### Available Options
You may use the following options:

| Option | Description |
| --------------------- | ---------------------------------- |
| `-O*` or `--option=*` | Override the default rsync options |
| `-D` or `--dry` | Perform a dry run of the sync |
| Option | Description |
| --------------------- | --------------------------------------------------------- |
| `-O*` or `--option=*` | Override the default rsync options |
| `-D` or `--dry` | Perform a dry run of the sync with real-time output |
| `-v` or `--verbose` | Displays the real-time output of the sync in the terminal |

## Usage Examples

Expand All @@ -185,11 +181,16 @@ Push the assets recipe to the production remote with some custom rsync options:
php artisan sync push production assets --option=-avh --option=--delete
```

Perform a dry sync:
Perform a dry run:
```bash
php artisan sync pull staging assets --dry
```

Echo the real-time output of the sync in your terminal:
```bash
php artisan sync pull staging assets --verbose
```

List the origin, target, options, and port in a nice table:
```bash
php artisan sync:list pull staging assets
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
}
],
"require": {
"php": "^8.1",
"illuminate/support": "^10.0",
"titasgailius/terminal": "^1.2"
"php": "^8.2",
"illuminate/support": "^11.0",
"laravel/prompts": "^0.1.17"
},
"require-dev": {
"nunomaduro/collision": "^7.0",
"orchestra/testbench": "^8.0",
"nunomaduro/collision": "^8.1",
"orchestra/testbench": "^9.0",
"phpunit/phpunit": "^10.0"
},
"autoload": {
Expand Down
6 changes: 1 addition & 5 deletions config/sync.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,7 @@
*/

'options' => [
// '--archive',
// '--itemize-changes',
// '--verbose',
// '--human-readable',
// '--progress'
'--archive',
],

];
101 changes: 0 additions & 101 deletions src/CommandGenerator.php

This file was deleted.

Loading
Loading