Skip to content
This repository has been archived by the owner on Sep 22, 2024. It is now read-only.

Commit

Permalink
Merge pull request #1 from Zakmes/develop
Browse files Browse the repository at this point in the history
Provide PHP 8 and Laravel 8 support
  • Loading branch information
pactode authored Mar 26, 2021
2 parents 04c9458 + b7fefd9 commit 2b18df7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 19 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
25 changes: 8 additions & 17 deletions config/domain-commands.php
Original file line number Diff line number Diff line change
Expand Up @@ -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,
],

];

0 comments on commit 2b18df7

Please sign in to comment.