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

Commit d096341

Browse files
committed
Merge branch 'main' of github.com:coderflexx/laracommand into main
2 parents cc42e3f + 36c07cd commit d096341

File tree

4 files changed

+17
-11
lines changed

4 files changed

+17
-11
lines changed

.github/workflows/run-tests.yml

+4-4
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

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
All notable changes to `Laracommand` will be documented in this file.
44

5+
## v2.0.1 - 2022-02-10
6+
7+
## What's Changed
8+
9+
- V2 by @ousid in https://github.com/coderflexx/laracommand/pull/2
10+
11+
**Full Changelog**: https://github.com/coderflexx/laracommand/compare/v1.2.0...v2.0.1
12+
513
## v2.0.0 - 2022-02-10
614

715
## Add

composer.json

+5-6
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

-1
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)