Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update to support PHP 8 #421

Merged
merged 11 commits into from
Dec 21, 2020
Binary file modified bin/box
Binary file not shown.
18 changes: 9 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
}
],
"require": {
"php": "^7.3",
"php": "^7.3 || ^8.0",
"ext-json": "*",
"dragonmantank/cron-expression": "^3.0",
"dragonmantank/cron-expression": "^3.0.2",
"illuminate/cache": "^8.0",
"illuminate/config": "^8.0",
"illuminate/console": "^8.0",
Expand All @@ -29,10 +29,10 @@
"illuminate/testing": "^8.0",
"laravel-zero/foundation": "^8.0",
"league/flysystem": "^1.1.3",
"nunomaduro/collision": "^5.0",
"nunomaduro/laravel-console-summary": "^1.5",
"nunomaduro/laravel-console-task": "^1.5",
"nunomaduro/laravel-desktop-notifier": "^2.4",
"nunomaduro/collision": "^5.1",
"nunomaduro/laravel-console-summary": "^1.7",
"nunomaduro/laravel-console-task": "^1.6",
"nunomaduro/laravel-desktop-notifier": "^2.5.1",
"psr/log": "^1.1",
"ramsey/uuid": "^4.0",
"symfony/console": "^5.1",
Expand All @@ -43,16 +43,16 @@
},
"require-dev": {
"guzzlehttp/guzzle": "^6.3.1|^7.0",
"hmazter/laravel-schedule-list": "^2.2",
"hmazter/laravel-schedule-list": "^2.2.1",
"illuminate/bus": "^8.0",
"illuminate/database": "^8.0",
"illuminate/http": "^8.0",
"illuminate/log": "^8.0",
"illuminate/queue": "^8.0",
"illuminate/redis": "^8.0",
"laminas/laminas-text": "^2.7",
"laminas/laminas-text": "^2.8",
"nunomaduro/laravel-console-dusk": "^1.8",
"nunomaduro/laravel-console-menu": "^3.1",
"nunomaduro/laravel-console-menu": "^3.2",
"padraic/phar-updater": "^1.0.6",
"pestphp/pest": "^0.3",
"phpstan/phpstan": "^0.12"
Expand Down
2 changes: 1 addition & 1 deletion src/Components/Logo/Installer.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ final class Installer extends AbstractInstaller
*/
public function install(): void
{
$this->require('laminas/laminas-text "^2.7"');
$this->require('laminas/laminas-text "^2.8"');

$this->task(
'Creating default logo configuration',
Expand Down
2 changes: 1 addition & 1 deletion src/Components/Menu/Installer.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ final class Installer extends AbstractInstaller
*/
public function install(): void
{
$this->require('nunomaduro/laravel-console-menu "^3.1"');
$this->require('nunomaduro/laravel-console-menu "^3.2"');
}
}
2 changes: 1 addition & 1 deletion src/Components/ScheduleList/Installer.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ final class Installer extends AbstractInstaller
*/
public function install(): void
{
$this->require('hmazter/laravel-schedule-list "^2.2"');
$this->require('hmazter/laravel-schedule-list "^2.2.1"');

$this->task(
'Creating default schedule list configuration',
Expand Down
2 changes: 1 addition & 1 deletion tests/Components/LogoInstallTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

$composerMock->expects($this->once())
->method('require')
->with('laminas/laminas-text "^2.7"');
->with('laminas/laminas-text "^2.8"');

$this->app->instance(ComposerContract::class, $composerMock);

Expand Down
2 changes: 1 addition & 1 deletion tests/Components/MenuComponentTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

$composerMock->expects($this->once())
->method('require')
->with('nunomaduro/laravel-console-menu "^3.1"');
->with('nunomaduro/laravel-console-menu "^3.2"');

$this->app->instance(ComposerContract::class, $composerMock);

Expand Down
2 changes: 1 addition & 1 deletion tests/Components/ScheduleListInstallTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

$composerMock->expects($this->once())
->method('require')
->with('hmazter/laravel-schedule-list "^2.2"');
->with('hmazter/laravel-schedule-list "^2.2.1"');

$this->app->instance(ComposerContract::class, $composerMock);

Expand Down