Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Laravel 8 Support #178

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ language: php
php:
- 7.2
- 7.3
- 7.4

before_script:
- travis_retry composer self-update
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@
}
],
"require": {
"laravel/framework": "~6.0|~7.0",
"doctrine/dbal": "^2.5"
"laravel/framework": "~8.0",
"doctrine/dbal": "^2.5.2"
},
"require-dev": {
"phpunit/phpunit" : "~8.3",
"orchestra/testbench": "~4.0",
"mockery/mockery": "^1.2.3"
"phpunit/phpunit" : "~9.1",
"orchestra/testbench": "~6.0",
"mockery/mockery": "^1.3"
},
"autoload": {
"psr-4": {
Expand Down
1 change: 0 additions & 1 deletion phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
>
<testsuites>
<testsuite name="Translation Test Suite">
Expand Down
6 changes: 4 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ WAAVI is a web development studio based in Madrid, Spain. You can learn more abo
5.5.x | 2.3.x and higher
5.6.x | 2.3.x and higher
6.x\|7.x | 2.4.x and higher
8.x.x | 2.5.x and higher

## Features overview

- Allow dynamic changes to the site's text and translations.
Expand All @@ -54,12 +56,12 @@ WAAVI is a web development studio based in Madrid, Spain. You can learn more abo
Require through composer


composer require waavi/translation 2.3.x
composer require waavi/translation 2.5.x

Or manually edit your composer.json file:

"require": {
"waavi/translation": "2.3.x"
"waavi/translation": "2.5.x"
}

Once installed, in your project's config/app.php file replace the following entry from the providers array:
Expand Down