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

Commit

Permalink
Install all dependencies for the creation of the phar file even the s…
Browse files Browse the repository at this point in the history
…uggested
  • Loading branch information
zaherg committed Mar 1, 2020
1 parent 1dadc0e commit c38cc8b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/continuous-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion bin/backup
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit c38cc8b

Please sign in to comment.