Skip to content

Commit

Permalink
Merge pull request #171 from jonsugar/laravel-zero-v9-upgrade
Browse files Browse the repository at this point in the history
Laravel zero v9 upgrade
  • Loading branch information
jonsugar authored Mar 1, 2022
2 parents 347ac20 + d7b8739 commit 3a55c38
Show file tree
Hide file tree
Showing 9 changed files with 1,142 additions and 1,130 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
os: [Ubuntu, macOS]
php: [7.3, 7.4, 8.0]
php: [8.0, 8.1]

include:
- os: Ubuntu
Expand Down
2 changes: 1 addition & 1 deletion app/Commands/LamboCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

abstract class LamboCommand extends Command
{
public function run(InputInterface $input, OutputInterface $output)
public function run(InputInterface $input, OutputInterface $output): int
{
app()->singleton(ConsoleWriter::class, function () use ($input, $output) {
return new ConsoleWriter($input, $output);
Expand Down
1 change: 0 additions & 1 deletion app/LamboException.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,4 @@

class LamboException extends Exception
{

}
Binary file modified builds/lambo
Binary file not shown.
11 changes: 7 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@
}
],
"require": {
"php": "^7.3|^8.0",
"php": "^8.0",
"ext-json": "*",
"ext-pdo": "*",
"ext-intl": "*"
},
"require-dev": {
"laravel-zero/framework": "^8.0",
"laravel-zero/framework": "^v9.0",
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^9.0",
"spatie/laravel-ray": "^1.17",
"tightenco/duster": "^v0.3.0"
"tightenco/duster": "^v0.3"
},
"autoload": {
"psr-4": {
Expand All @@ -44,7 +44,10 @@
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
"optimize-autoloader": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
Expand Down
Loading

0 comments on commit 3a55c38

Please sign in to comment.