-
Notifications
You must be signed in to change notification settings - Fork 167
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Laravel 6 support * This version of PHPUnit is supported on PHP 7.2 and PHP 7.3. * setUp void * composer update dependencies * fix : void setUp * fix : void tearDown * change composer to laravel 6 * Arr::get fix helper * add new line .gitignore
- Loading branch information
Showing
25 changed files
with
96 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ composer.phar | |
composer.lock | ||
.DS_Store | ||
tests/temp/database.sqlite | ||
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
language: php | ||
|
||
php: | ||
- 7.0 | ||
- 7.1 | ||
|
||
before_script: | ||
- travis_retry composer self-update | ||
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source | ||
|
||
script: | ||
- phpunit | ||
language: php | ||
|
||
php: | ||
- 7.2 | ||
- 7.3 | ||
|
||
before_script: | ||
- travis_retry composer self-update | ||
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source | ||
|
||
script: | ||
- phpunit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,43 @@ | ||
{ | ||
"name": "waavi/translation", | ||
"description": "A Translation package for Laravel 5 with database and cache support", | ||
"keywords": [ | ||
"waavi", | ||
"laravel-translator", | ||
"laravel", | ||
"translator", | ||
"translation", | ||
"localization" | ||
], | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Waavi", | ||
"email": "info@waavi.com", | ||
"homepage": "http://waavi.com" | ||
} | ||
], | ||
"require": { | ||
"laravel/framework": "~5.5", | ||
"doctrine/dbal": "^2.5" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit" : "~6.0", | ||
"orchestra/testbench": "~3.5", | ||
"mockery/mockery": "^0.9.9" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Waavi\\Translation\\": "src/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Waavi\\Translation\\Test\\": "tests" | ||
} | ||
}, | ||
"minimum-stability": "dev", | ||
"scripts": { | ||
"test": "vendor/bin/phpunit" | ||
} | ||
} | ||
{ | ||
"name": "waavi/translation", | ||
"description": "A Translation package for Laravel 5 with database and cache support", | ||
"keywords": [ | ||
"waavi", | ||
"laravel-translator", | ||
"laravel", | ||
"translator", | ||
"translation", | ||
"localization" | ||
], | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Waavi", | ||
"email": "info@waavi.com", | ||
"homepage": "http://waavi.com" | ||
} | ||
], | ||
"require": { | ||
"laravel/framework": "~6.0", | ||
"doctrine/dbal": "^2.5" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit" : "~8.3", | ||
"orchestra/testbench": "~4.0", | ||
"mockery/mockery": "^1.2.3" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Waavi\\Translation\\": "src/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Waavi\\Translation\\Test\\": "tests" | ||
} | ||
}, | ||
"minimum-stability": "dev", | ||
"scripts": { | ||
"test": "vendor/bin/phpunit" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.