Skip to content

Commit a059b70

Browse files
committed
Add "illuminate/console" to Composer Requirements
1 parent 46fb52c commit a059b70

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

composer.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,19 @@
1212
"require": {
1313
"php": "^8.0",
1414
"ext-pdo": "*",
15-
"laravel/helpers": "^1.5"
15+
"laravel/helpers": "^1.5",
16+
"illuminate/console": "~5.8.0|^6.0|^7.0|^8.0|^9.0"
1617
},
1718
"autoload": {
1819
"psr-4": {
1920
"Nanvaie\\DatabaseRepository\\": "src/"
2021
}
2122
},
2223
"extra": {
23-
"laravel": {
24-
"providers": [
25-
"DatabaseRepositoryServiceProvider"
26-
]
24+
"laravel": {
25+
"providers": [
26+
"DatabaseRepositoryServiceProvider"
27+
]
28+
}
2729
}
2830
}
29-
}

src/DatabaseRepositoryServiceProvider.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
<?php
22

3-
43
namespace Nanvaie\DatabaseRepository;
54

6-
75
use Nanvaie\DatabaseRepository\Commands\MakeAllRepository;
86
use Nanvaie\DatabaseRepository\Commands\MakeEntity;
97
use Nanvaie\DatabaseRepository\Commands\MakeFactory;

0 commit comments

Comments
 (0)