diff --git a/.scrutinizer.yml b/.scrutinizer.yml index 5dc7cd4..2880858 100644 --- a/.scrutinizer.yml +++ b/.scrutinizer.yml @@ -23,7 +23,7 @@ checks: tools: external_code_coverage: timeout: 600 - runs: 4 + runs: 2 php_code_sniffer: enabled: true config: diff --git a/.travis.yml b/.travis.yml index 311b6ad..0f8720f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,6 @@ language: php php: - - 7.1.3 - - 7.1 - 7.2 - 7.3 - nightly diff --git a/README.md b/README.md index d767dee..222f543 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Laravel Notes [![Packagist License][badge_license]](LICENSE.md) [![For Laravel 5][badge_laravel]][link-github-repo] +# Laravel Notes [![Packagist License][badge_license]](LICENSE.md) [![For Laravel][badge_laravel]][link-github-repo] [![Travis Status][badge_build]][link-travis] [![Coverage Status][badge_coverage]][link-scrutinizer] @@ -20,7 +20,7 @@ This Laravel Notes will allow you to add a notes system into your Laravel projec * Easy setup & configuration. * Well documented & IDE Friendly. * Well tested with maximum code quality. - * Laravel `5.1` to `5.8` are supported. + * Laravel `5.1` to `6.0` are supported. * Made with :heart: & :coffee:. ## Table of contents @@ -42,7 +42,7 @@ If you discover any security related issues, please email arcanedev.maroc@gmail. - [ARCANEDEV][link-author] - [All Contributors][link-contributors] -[badge_laravel]: https://img.shields.io/badge/For%20Laravel-5.1%20to%205.8-orange.svg?style=flat-square +[badge_laravel]: https://img.shields.io/badge/For%20Laravel-5.1%20to%206.0-orange.svg?style=flat-square [badge_license]: https://img.shields.io/packagist/l/arcanedev/laravel-notes.svg?style=flat-square [badge_build]: https://img.shields.io/travis/ARCANEDEV/LaravelNotes.svg?style=flat-square [badge_coverage]: https://img.shields.io/scrutinizer/coverage/g/ARCANEDEV/LaravelNotes.svg?style=flat-square diff --git a/_docs/0-Home.md b/_docs/0-Home.md index 2123076..7d2f5b8 100644 --- a/_docs/0-Home.md +++ b/_docs/0-Home.md @@ -8,7 +8,7 @@ This Laravel Notes will allow you to add a notes system into your Laravel projec * Easy setup & configuration. * Well documented & IDE Friendly. * Well tested with maximum code quality. - * Laravel `5.1` to `5.8` are supported. + * Laravel `5.1` to `6.0` are supported. * Made with :heart: & :coffee:. ## Table of contents diff --git a/_docs/1-Installation-and-Setup.md b/_docs/1-Installation-and-Setup.md index d3e8d41..0c60def 100644 --- a/_docs/1-Installation-and-Setup.md +++ b/_docs/1-Installation-and-Setup.md @@ -24,6 +24,7 @@ The Laravel Notes package has a few system requirements: | ![Laravel Notes v3.x][laravel_notes_3_x] | ![Laravel v5.6][laravel_5_6] | | ![Laravel Notes v4.x][laravel_notes_4_x] | ![Laravel v5.7][laravel_5_7] | | ![Laravel Notes v5.x][laravel_notes_5_x] | ![Laravel v5.8][laravel_5_8] | +| ![Laravel Notes v6.x][laravel_notes_6_x] | ![Laravel v6.0][laravel_6_0] | [laravel_5_1]: https://img.shields.io/badge/v5.1-supported-brightgreen.svg?style=flat-square "Laravel v5.1" [laravel_5_2]: https://img.shields.io/badge/v5.2-supported-brightgreen.svg?style=flat-square "Laravel v5.2" @@ -33,6 +34,7 @@ The Laravel Notes package has a few system requirements: [laravel_5_6]: https://img.shields.io/badge/v5.6-supported-brightgreen.svg?style=flat-square "Laravel v5.6" [laravel_5_7]: https://img.shields.io/badge/v5.7-supported-brightgreen.svg?style=flat-square "Laravel v5.7" [laravel_5_8]: https://img.shields.io/badge/v5.8-supported-brightgreen.svg?style=flat-square "Laravel v5.8" +[laravel_6_0]: https://img.shields.io/badge/v6.0-supported-brightgreen.svg?style=flat-square "Laravel v6.0" [laravel_notes_0_x]: https://img.shields.io/badge/version-0.*-blue.svg?style=flat-square "LaravelNotes v0.*" [laravel_notes_1_x]: https://img.shields.io/badge/version-1.*-blue.svg?style=flat-square "LaravelNotes v1.*" @@ -40,6 +42,7 @@ The Laravel Notes package has a few system requirements: [laravel_notes_3_x]: https://img.shields.io/badge/version-3.*-blue.svg?style=flat-square "LaravelNotes v3.*" [laravel_notes_4_x]: https://img.shields.io/badge/version-4.*-blue.svg?style=flat-square "LaravelNotes v4.*" [laravel_notes_5_x]: https://img.shields.io/badge/version-5.*-blue.svg?style=flat-square "LaravelNotes v5.*" +[laravel_notes_6_x]: https://img.shields.io/badge/version-6.*-blue.svg?style=flat-square "LaravelNotes v6.*" ## Composer diff --git a/composer.json b/composer.json index 782cc6b..18eb992 100644 --- a/composer.json +++ b/composer.json @@ -14,14 +14,14 @@ "type": "library", "license": "MIT", "require": { - "php": ">=7.1.3", - "arcanedev/support": "~4.5.0" + "php": ">=7.2.0", + "arcanedev/support": "~5.0.0" }, "require-dev": { - "orchestra/testbench": "~3.8.0", + "orchestra/testbench": "~4.0.0", "mockery/mockery": "~1.0", - "phpunit/phpunit": "~7.0|~8.0", - "phpunit/phpcov": "~5.0|~6.0" + "phpunit/phpunit": "~8.0", + "phpunit/phpcov": "~6.0" }, "autoload": { "psr-4": { diff --git a/src/Traits/AuthoredNotes.php b/src/Traits/AuthoredNotes.php index eb9a005..0604069 100644 --- a/src/Traits/AuthoredNotes.php +++ b/src/Traits/AuthoredNotes.php @@ -18,7 +18,7 @@ trait AuthoredNotes */ /** - * Relation to ONE note. + * Relation to Many notes. * * @return \Illuminate\Database\Eloquent\Relations\HasMany */