diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0ef71af..8275698 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -34,7 +34,7 @@ jobs: coverage: none - name: Install dependencies - run: composer update --${{ matrix.stability }} --prefer-dist --no-interaction --no-suggest + run: composer update --${{ matrix.stability }} --prefer-dist --no-interaction --no-progress --no-suggest - name: Execute tests run: vendor/bin/phpunit --verbose diff --git a/composer.json b/composer.json index 1989979..b38236f 100755 --- a/composer.json +++ b/composer.json @@ -3,7 +3,12 @@ "description": "Missing relationship events for Laravel", "homepage": "https://github.com/chelout/laravel-relationship-events", "license": "MIT", - "keywords": ["laravel", "relationship", "relations", "events"], + "keywords": [ + "laravel", + "relationship", + "relations", + "events" + ], "authors": [ { "name": "chelout", @@ -12,15 +17,14 @@ ], "require": { "php": "^7.2", - "illuminate/container": "^6.0", - "illuminate/database": "^6.0", - "illuminate/events": "^6.0", - "illuminate/support": "^6.0" + "illuminate/container": "^6.0|^7.0", + "illuminate/database": "^6.0|^7.0", + "illuminate/events": "^6.0|^7.0", + "illuminate/support": "^6.0|^7.0" }, "require-dev": { - "phpunit/phpunit": "^8.3", - "orchestra/testbench-core": "^4.0", - "orchestra/testbench": "^4.0" + "phpunit/phpunit": "^8.3|^9.0", + "orchestra/testbench": "^4.0|^5.0" }, "autoload": { "psr-4": {