Skip to content

Commit

Permalink
update for L9
Browse files Browse the repository at this point in the history
  • Loading branch information
mallardduck committed Feb 8, 2022
1 parent 84f13d8 commit 867d40b
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 10 deletions.
30 changes: 21 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
{
"name": "mallardduck/laravel-traits",
"description": "A collection of useful Laravel snippets in the form of easy to use traits.",
"license": "GPL-3.0-or-later",
"type": "library",
"keywords": [
"laravel",
"laravel traits",
"traits",
"console",
"controller"
],
"type": "library",
"homepage": "https://github.com/mallardduck/laravel-traits",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Dan Pock",
Expand All @@ -19,16 +18,29 @@
"role": "Developer"
}
],
"homepage": "https://github.com/mallardduck/laravel-traits",
"require": {
"php": "^7.2 || ^8.0.0",
"illuminate/console": "^6.0 || ^7.0 || ^8.0 || ^9.0",
"illuminate/database": "^6.0 || ^7.0 || ^8.0 || ^9.0",
"illuminate/pagination": "^6.0 || ^7.0 || ^8.0 || ^9.0",
"illuminate/view": "^6.0 || ^7.0 || ^8.0 || ^9.0"
},
"minimum-stability": "dev",
"prefer-stable": false,
"autoload": {
"psr-4": {
"MallardDuck\\LaravelTraits\\": "src/"
}
},
"require": {
"php": "^7.2|^8.0.0",
"illuminate/console": "~6.0|~7.0|~8.0",
"illuminate/database": "~6.0|~7.0|~8.0",
"illuminate/pagination": "~6.0|~7.0|~8.0",
"illuminate/view": "~6.0|~7.0|~8.0"
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Spatie\\LaravelMarkdown\\MarkdownServiceProvider"
]
}
}
}
1 change: 0 additions & 1 deletion src/Console/CommandOutputPrefix.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
namespace MallardDuck\LaravelTraits\Console;

use Illuminate\Console\Concerns\InteractsWithIO;
use Illuminate\Console\OutputStyle;

/**
* Easily add the ability to prefix command output for convenient logging.
Expand Down

0 comments on commit 867d40b

Please sign in to comment.