Skip to content
This repository was archived by the owner on Nov 11, 2022. It is now read-only.

Commit 53dbb31

Browse files
authored
Merge pull request #2 from coderflexx/v2
V2
2 parents 9624d6a + 9cb5fb1 commit 53dbb31

File tree

3 files changed

+9
-11
lines changed

3 files changed

+9
-11
lines changed

.github/workflows/run-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
fail-fast: true
1414
matrix:
1515
os: [ubuntu-latest, windows-latest]
16-
php: [8.0]
17-
laravel: [8.*]
16+
php: [8.1, 8.0]
17+
laravel: [9.*]
1818
stability: [prefer-lowest, prefer-stable]
1919
include:
20-
- laravel: 8.*
21-
testbench: ^6.23
20+
- laravel: 9.*
21+
testbench: 7.*
2222

2323
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2424

composer.json

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,18 @@
1818
"require": {
1919
"php": "^8.0",
2020
"spatie/laravel-package-tools": "^1.9.2",
21-
"illuminate/contracts": "^8.73"
21+
"illuminate/contracts": "^9.0"
2222
},
2323
"require-dev": {
24-
"nunomaduro/collision": "^5.10",
24+
"nunomaduro/collision": "^6.0",
2525
"nunomaduro/larastan": "^1.0",
26-
"orchestra/testbench": "^6.22",
26+
"orchestra/testbench": "^7.0",
2727
"pestphp/pest": "^1.21",
28-
"pestphp/pest-plugin-laravel": "^1.1",
28+
"pestphp/pest-plugin-laravel": "^1.2",
2929
"phpstan/extension-installer": "^1.1",
3030
"phpstan/phpstan-deprecation-rules": "^1.0",
3131
"phpstan/phpstan-phpunit": "^1.0",
32-
"phpunit/phpunit": "^9.5",
33-
"spatie/laravel-ray": "^1.26"
32+
"phpunit/phpunit": "^9.5.4"
3433
},
3534
"autoload": {
3635
"psr-4": {

src/Console/Concerns/InteractsWithConsoleCommands.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ public function loopThroughNameArgumentWith(string $command): bool
1818
* @var array $models
1919
*/
2020
$models = explode(' ', strval($this->argument('name')));
21-
2221
collect($models)->each(function ($name) use ($command) {
2322
$this->line("Generating {$name} class\n");
2423

0 commit comments

Comments
 (0)