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

Commit

Permalink
Merge branch 'main' of github.com:coderflexx/laracommand into main
Browse files Browse the repository at this point in the history
  • Loading branch information
ousid committed Feb 12, 2022
2 parents cc42e3f + 36c07cd commit d096341
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 11 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest]
php: [8.0]
laravel: [8.*]
php: [8.1, 8.0]
laravel: [9.*]
stability: [prefer-lowest, prefer-stable]
include:
- laravel: 8.*
testbench: ^6.23
- laravel: 9.*
testbench: 7.*

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

Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

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

## v2.0.1 - 2022-02-10

## What's Changed

- V2 by @ousid in https://github.com/coderflexx/laracommand/pull/2

**Full Changelog**: https://github.com/coderflexx/laracommand/compare/v1.2.0...v2.0.1

## v2.0.0 - 2022-02-10

## Add
Expand Down
11 changes: 5 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,18 @@
"require": {
"php": "^8.0",
"spatie/laravel-package-tools": "^1.9.2",
"illuminate/contracts": "^8.73"
"illuminate/contracts": "^9.0"
},
"require-dev": {
"nunomaduro/collision": "^5.10",
"nunomaduro/collision": "^6.0",
"nunomaduro/larastan": "^1.0",
"orchestra/testbench": "^6.22",
"orchestra/testbench": "^7.0",
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-laravel": "^1.1",
"pestphp/pest-plugin-laravel": "^1.2",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^9.5",
"spatie/laravel-ray": "^1.26"
"phpunit/phpunit": "^9.5.4"
},
"autoload": {
"psr-4": {
Expand Down
1 change: 0 additions & 1 deletion src/Console/Concerns/InteractsWithConsoleCommands.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ public function loopThroughNameArgumentWith(string $command): bool
* @var array $models
*/
$models = explode(' ', strval($this->argument('name')));

collect($models)->each(function ($name) use ($command) {
$this->line("Generating {$name} class\n");

Expand Down

0 comments on commit d096341

Please sign in to comment.