-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
114eab2
commit 36a298e
Showing
3 changed files
with
82 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, | ||
|
||
]; |