From c38cc8b074070df9dbd4f0c5ddfa0c50873aa707 Mon Sep 17 00:00:00 2001 From: Zaher Ghaibeh Date: Sun, 1 Mar 2020 17:22:01 +0300 Subject: [PATCH] Install all dependencies for the creation of the phar file even the suggested --- .github/workflows/continuous-release.yml | 3 +++ CHANGELOG | 3 +++ bin/backup | 2 +- composer.json | 2 +- 4 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/continuous-release.yml b/.github/workflows/continuous-release.yml index fdb9455..c135777 100644 --- a/.github/workflows/continuous-release.yml +++ b/.github/workflows/continuous-release.yml @@ -36,6 +36,9 @@ jobs: - name: Composer install run: composer install --prefer-dist --no-progress --no-suggest + + - name: Install additional dependencies + run: composer require league/flysystem league/flysystem-aws-s3-v3 spatie/flysystem-dropbox - name: Build project run: composer run build diff --git a/CHANGELOG b/CHANGELOG index e4218c9..7234630 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,8 @@ # Change Log +[v0.1.6] +* Install all dependencies for the creation of the phar file even the suggested. + [v0.1.5] * we now prefix the file name with the time. * we release a phar version of the application. diff --git a/bin/backup b/bin/backup index a9d7061..eb956e8 100755 --- a/bin/backup +++ b/bin/backup @@ -5,7 +5,7 @@ require __DIR__.'/../src/bootstrap.php'; use Symfony\Component\Console\Application; -$app = new Application('Database Backup', '0.1.5'); +$app = new Application('Database Backup', '0.1.6'); // Config related commands $app->add(new Backup\Commands\InitCommand); diff --git a/composer.json b/composer.json index cb999df..dea3c19 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,7 @@ "name": "damascene/database-backup", "description": "This is just a small CLI app which will create a backup from your database", "type": "project", - "version" : "0.1.5", + "version" : "0.1.6", "require": { "php": ">=7.0.0", "nesbot/carbon": "1.22.1",