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

Commit 2b18df7

Browse files
authored
Merge pull request #1 from Zakmes/develop
Provide PHP 8 and Laravel 8 support
2 parents 04c9458 + b7fefd9 commit 2b18df7

File tree

2 files changed

+10
-19
lines changed

2 files changed

+10
-19
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
}
1212
],
1313
"require": {
14-
"php": "^7.2.5",
15-
"laravel/framework": "^6.0|^7.0"
14+
"php": "^7.2|^8.0",
15+
"laravel/framework": "^6.0|^7.0|^8.0"
1616
},
1717
"require-dev": {
1818
"orchestra/testbench": "^4.0|^5.0",

config/domain-commands.php

Lines changed: 8 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -15,23 +15,14 @@
1515
* When set to `null`, the default stub is used.
1616
*/
1717
'stubs' => [
18-
19-
'action' => null,
20-
21-
'dto' => null,
22-
23-
'enum' => null,
24-
25-
'event' => null,
26-
27-
'model' => null,
28-
29-
'observer' => null,
30-
31-
'policy' => null,
32-
33-
'rule' => null,
34-
18+
'action' => null,
19+
'dto' => null,
20+
'enum' => null,
21+
'event' => null,
22+
'model' => null,
23+
'observer' => null,
24+
'policy' => null,
25+
'rule' => null,
3526
],
3627

3728
];

0 commit comments

Comments
 (0)