Skip to content

Commit 3d488fe

Browse files
committed
Allow all illuminate/support version
1 parent 60deb58 commit 3d488fe

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
composer.phar
33
composer.lock
44
.DS_Store
5+
/.idea

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
],
1212
"require": {
1313
"php": ">=5.5.9",
14-
"illuminate/support": "~5",
14+
"illuminate/support": "*",
1515
"maatwebsite/excel": "~2.1.0"
1616
},
1717
"autoload": {

src/ReportGenerator.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
namespace Jimmyjs\ReportGenerator;
44

55
use Config;
6-
use Illuminate\Contracts\Config\Repository as ConfigRepository;
76

87
class ReportGenerator
98
{
@@ -55,7 +54,7 @@ public function showMeta($value = true)
5554

5655
return $this;
5756
}
58-
57+
5958
public function showNumColumn($value = true)
6059
{
6160
$this->showNumColumn = $value;

0 commit comments

Comments
 (0)