Skip to content
This repository was archived by the owner on Aug 28, 2022. It is now read-only.

Commit c38cc8b

Browse files
committed
Install all dependencies for the creation of the phar file even the suggested
1 parent 1dadc0e commit c38cc8b

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

.github/workflows/continuous-release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ jobs:
3636

3737
- name: Composer install
3838
run: composer install --prefer-dist --no-progress --no-suggest
39+
40+
- name: Install additional dependencies
41+
run: composer require league/flysystem league/flysystem-aws-s3-v3 spatie/flysystem-dropbox
3942

4043
- name: Build project
4144
run: composer run build

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Change Log
22

3+
[v0.1.6]
4+
* Install all dependencies for the creation of the phar file even the suggested.
5+
36
[v0.1.5]
47
* we now prefix the file name with the time.
58
* we release a phar version of the application.

bin/backup

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ require __DIR__.'/../src/bootstrap.php';
55

66
use Symfony\Component\Console\Application;
77

8-
$app = new Application('Database Backup', '0.1.5');
8+
$app = new Application('Database Backup', '0.1.6');
99

1010
// Config related commands
1111
$app->add(new Backup\Commands\InitCommand);

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "damascene/database-backup",
33
"description": "This is just a small CLI app which will create a backup from your database",
44
"type": "project",
5-
"version" : "0.1.5",
5+
"version" : "0.1.6",
66
"require": {
77
"php": ">=7.0.0",
88
"nesbot/carbon": "1.22.1",

0 commit comments

Comments
 (0)