Skip to content

Commit 3dade7c

Browse files
Merge pull request #18 from ARCANEDEV/update-1
Update the package
2 parents 53fc42b + ac1f794 commit 3dade7c

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This Laravel Notes will allow you to add a notes system into your Laravel projec
2020
* Easy setup & configuration.
2121
* Well documented & IDE Friendly.
2222
* Well tested with maximum code quality.
23-
* Laravel `5.1 | 5.2 | 5.3 | 5.4 | 5.5 | 5.6` are supported.
23+
* Laravel `5.1` to `5.6` are supported.
2424
* Made with :heart: & :coffee:.
2525

2626
## Table of contents

_docs/0-Home.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This Laravel Notes will allow you to add a notes system into your Laravel projec
88
* Easy setup & configuration.
99
* Well documented & IDE Friendly.
1010
* Well tested with maximum code quality.
11-
* Laravel `5.1 | 5.2 | 5.3 | 5.4 | 5.5` are supported.
11+
* Laravel `5.1` to `5.6` are supported.
1212
* Made with :heart: & :coffee:.
1313

1414
## Table of contents

config/notes.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
*/
99

1010
'database' => [
11-
'connection' => config('database.default'),
11+
'connection' => env('DB_CONNECTION', 'mysql'),
1212

13-
'prefix' => '',
13+
'prefix' => null,
1414
],
1515

1616
/* -----------------------------------------------------------------

phpunit.xml.dist

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
convertWarningsToExceptions="true"
99
processIsolation="false"
1010
stopOnFailure="false"
11-
syntaxCheck="false"
1211
>
1312
<testsuites>
1413
<testsuite name="Package Test Suite">
@@ -27,6 +26,6 @@
2726
<logging>
2827
<log type="coverage-clover" target="build/logs/clover.xml"/>
2928
<log type="coverage-text" target="build/logs/coverage.txt"/>
30-
<log type="coverage-html" target="build/logs/coverage" charset="UTF-8" yui="true" highlight="true"/>
29+
<log type="coverage-html" target="build/logs/coverage"/>
3130
</logging>
3231
</phpunit>

0 commit comments

Comments
 (0)