mirror of
https://github.com/bitinflow/bunny-cli.git
synced 2026-03-13 13:45:54 +00:00
21 lines
565 B
PHP
21 lines
565 B
PHP
<?php
|
|
|
|
use LaravelZero\Framework\Components\Updater\Strategy\GithubStrategy;
|
|
|
|
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' => GithubStrategy::class,
|
|
|
|
];
|