Skip to content

Commit dc6073e

Browse files
Merge pull request #19 from ARCANEDEV/update-laravel_5.7_support
Adding Laravel 5.7 support
2 parents 3dade7c + d7785cf commit dc6073e

File tree

5 files changed

+13
-9
lines changed

5 files changed

+13
-9
lines changed

README.md

Lines changed: 2 additions & 2 deletions
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` to `5.6` are supported.
23+
* Laravel `5.1` to `5.7` are supported.
2424
* Made with :heart: & :coffee:.
2525

2626
## Table of contents
@@ -42,7 +42,7 @@ If you discover any security related issues, please email arcanedev.maroc@gmail.
4242
- [ARCANEDEV][link-author]
4343
- [All Contributors][link-contributors]
4444

45-
[badge_laravel]: https://img.shields.io/badge/For%20Laravel-5.1%20to%205.6-orange.svg?style=flat-square
45+
[badge_laravel]: https://img.shields.io/badge/For%20Laravel-5.1%20to%205.7-orange.svg?style=flat-square
4646
[badge_license]: https://img.shields.io/packagist/l/arcanedev/laravel-notes.svg?style=flat-square
4747
[badge_build]: https://img.shields.io/travis/ARCANEDEV/LaravelNotes.svg?style=flat-square
4848
[badge_coverage]: https://img.shields.io/scrutinizer/coverage/g/ARCANEDEV/LaravelNotes.svg?style=flat-square

_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` to `5.6` are supported.
11+
* Laravel `5.1` to `5.7` are supported.
1212
* Made with :heart: & :coffee:.
1313

1414
## Table of contents

_docs/1-Installation-and-Setup.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
The Laravel Notes package has a few system requirements:
1212

1313
```
14-
- PHP >= 7.0
14+
- PHP >= 7.1.3
1515
```
1616

1717
## Version Compatibility
@@ -22,18 +22,21 @@ The Laravel Notes package has a few system requirements:
2222
| ![Laravel Notes v1.x][laravel_notes_1_x] | ![Laravel v5.4][laravel_5_4] |
2323
| ![Laravel Notes v2.x][laravel_notes_2_x] | ![Laravel v5.5][laravel_5_5] |
2424
| ![Laravel Notes v3.x][laravel_notes_3_x] | ![Laravel v5.6][laravel_5_6] |
25+
| ![Laravel Notes v4.x][laravel_notes_4_x] | ![Laravel v5.7][laravel_5_7] |
2526

2627
[laravel_5_1]: https://img.shields.io/badge/v5.1-supported-brightgreen.svg?style=flat-square "Laravel v5.1"
2728
[laravel_5_2]: https://img.shields.io/badge/v5.2-supported-brightgreen.svg?style=flat-square "Laravel v5.2"
2829
[laravel_5_3]: https://img.shields.io/badge/v5.3-supported-brightgreen.svg?style=flat-square "Laravel v5.3"
2930
[laravel_5_4]: https://img.shields.io/badge/v5.4-supported-brightgreen.svg?style=flat-square "Laravel v5.4"
3031
[laravel_5_5]: https://img.shields.io/badge/v5.5-supported-brightgreen.svg?style=flat-square "Laravel v5.5"
3132
[laravel_5_6]: https://img.shields.io/badge/v5.6-supported-brightgreen.svg?style=flat-square "Laravel v5.6"
33+
[laravel_5_7]: https://img.shields.io/badge/v5.7-supported-brightgreen.svg?style=flat-square "Laravel v5.7"
3234

3335
[laravel_notes_0_x]: https://img.shields.io/badge/version-0.*-blue.svg?style=flat-square "LaravelNotes v0.*"
3436
[laravel_notes_1_x]: https://img.shields.io/badge/version-1.*-blue.svg?style=flat-square "LaravelNotes v1.*"
3537
[laravel_notes_2_x]: https://img.shields.io/badge/version-2.*-blue.svg?style=flat-square "LaravelNotes v2.*"
3638
[laravel_notes_3_x]: https://img.shields.io/badge/version-3.*-blue.svg?style=flat-square "LaravelNotes v3.*"
39+
[laravel_notes_4_x]: https://img.shields.io/badge/version-4.*-blue.svg?style=flat-square "LaravelNotes v4.*"
3740

3841
## Composer
3942

_docs/2-Configuration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ return [
1919
*/
2020

2121
'database' => [
22-
'connection' => config('database.default'),
22+
'connection' => env('DB_CONNECTION', 'mysql'),
2323

24-
'prefix' => '',
24+
'prefix' => null,
2525
],
2626

2727
/* -----------------------------------------------------------------

composer.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,13 @@
1515
"license": "MIT",
1616
"require": {
1717
"php": ">=7.1.3",
18-
"arcanedev/support": "~4.3.0"
18+
"arcanedev/support": "~4.4.0"
1919
},
2020
"require-dev": {
21-
"orchestra/testbench": "~3.6.0",
21+
"orchestra/testbench": "~3.7.0",
2222
"phpunit/phpunit": "~7.0",
23-
"phpunit/phpcov": "~5.0"
23+
"phpunit/phpcov": "~5.0",
24+
"mockery/mockery": "~1.0"
2425
},
2526
"autoload": {
2627
"psr-4": {

0 commit comments

Comments
 (0)