diff --git a/composer.json b/composer.json index b6c281f..ea78400 100644 --- a/composer.json +++ b/composer.json @@ -11,8 +11,8 @@ } ], "require": { - "php": "^7.2.5", - "laravel/framework": "^6.0|^7.0" + "php": "^7.2|^8.0", + "laravel/framework": "^6.0|^7.0|^8.0" }, "require-dev": { "orchestra/testbench": "^4.0|^5.0", diff --git a/config/domain-commands.php b/config/domain-commands.php index c0e40e9..464d10f 100644 --- a/config/domain-commands.php +++ b/config/domain-commands.php @@ -15,23 +15,14 @@ * When set to `null`, the default stub is used. */ 'stubs' => [ - - 'action' => null, - - 'dto' => null, - - 'enum' => null, - - 'event' => null, - - 'model' => null, - - 'observer' => null, - - 'policy' => null, - - 'rule' => null, - + 'action' => null, + 'dto' => null, + 'enum' => null, + 'event' => null, + 'model' => null, + 'observer' => null, + 'policy' => null, + 'rule' => null, ], ];