diff --git a/.travis.yml b/.travis.yml index 71827f6..7e07782 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,12 +5,10 @@ matrix: include: - php: "7.2" env: LARAVEL_VERSION="^6.0" - - php: "7.3" - env: LARAVEL_VERSION="^6.0" - php: "7.3" env: LARAVEL_VERSION="^7.0" - php: "7.4" - env: LARAVEL_VERSION="^7.0" + env: LARAVEL_VERSION="^8.0" ## Cache composer cache: @@ -18,7 +16,7 @@ cache: - $HOME/.composer/cache before_script: - - composer require "illuminate/database:${LARAVEL_VERSION}" "illuminate/support:${LARAVEL_VERSION}" --no-update --no-interaction + - composer require "laravel/framework:${LARAVEL_VERSION}" --no-update --no-interaction - travis_retry composer update --no-interaction --prefer-dist script: diff --git a/composer.json b/composer.json index d427615..fb1fe76 100644 --- a/composer.json +++ b/composer.json @@ -3,14 +3,13 @@ "description": "Data scrubber for Laravel applications", "type": "library", "require": { - "fzaninotto/faker": "^1.7", - "illuminate/database": "^6.0|^7.0", - "illuminate/support": "^6.0|^7.0" + "laravel/framework": "^6.0|^7.0|^8.0" }, "require-dev": { + "fakerphp/faker": "^1.9.1", "phpunit/phpunit" : "^8.5", - "orchestra/testbench" : "^4.0|^5.0", - "orchestra/database": "^4.0|^5.0" + "orchestra/testbench" : "^4.0|^5.0|^6.0", + "orchestra/database": "^4.0|^5.0|^6.0" }, "autoload": { "psr-4" : { diff --git a/readme.md b/readme.md index 6574aa8..4784836 100644 --- a/readme.md +++ b/readme.md @@ -40,7 +40,7 @@ return [ ] ]; ``` -**Carwash** uses the fabulous [Faker](https://github.com/fzaninotto/Faker) package under the hood to generate replacement data. Please refer to the Faker documentation for a complete list of [available formatters](https://github.com/fzaninotto/Faker#formatters). +**Carwash** uses the fabulous [Faker](https://fakerphp.github.io/) package under the hood to generate replacement data. Please refer to the Faker documentation for a complete list of [available formatters](https://fakerphp.github.io/formatters/). More generally, the format of the **Carwash** config file is: ```php