Skip to content

Commit

Permalink
Updated to 2.0.1 to enable self-update as was not enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
elijahcruz12 committed Jul 16, 2021
1 parent 359b5cf commit a818e96
Show file tree
Hide file tree
Showing 4 changed files with 77 additions and 1 deletion.
Binary file modified builds/tasker
Binary file not shown.
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"php": "^7.4|^8.0",
"illuminate/database": "^8.40",
"laminas/laminas-text": "^2.8",
"laravel-zero/phar-updater": "^1.0.6",
"spatie/ssh": "^1.6",
"symfony/process": "^5.3"
},
Expand Down
57 changes: 56 additions & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions config/updater.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?php

use LaravelZero\Framework\Components\Updater\Strategy\GithubReleasesStrategy;

return [

/*
|--------------------------------------------------------------------------
| Self-updater Strategy
|--------------------------------------------------------------------------
|
| Here you may specify which update strategy class you wish to use when
| updating your application via the "self-update" command. This must
| be a class that implements the StrategyInterface from Humbug.
|
*/

'strategy' => GithubReleasesStrategy::class,

];

0 comments on commit a818e96

Please sign in to comment.