diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 602892d..799872d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -66,10 +66,11 @@ jobs: ${{ runner.os }}-composer-v4-${{ hashFiles('**/composer.json') }}- ${{ runner.os }}-composer-v4- - - name: Install dependencies with Illuminate ${{ matrix.laravel_version }} + - name: Install dependencies with Laravel ${{ matrix.laravel_version }} run: | - export COMPOSER_ROOT_VERSION=dev-master - composer require "illuminate/console:${{ matrix.laravel_version }}" "illuminate/http:${{ matrix.laravel_version }}" "illuminate/support:${{ matrix.laravel_version }}" --no-interaction --no-progress --prefer-stable --prefer-dist + export COMPOSER_ROOT_VERSION=dev-main + composer require "illuminate/support:${{ matrix.laravel_version }}" --no-update + composer update --no-interaction --no-progress --prefer-dist - name: Run test suite run: phpdbg -dmemory_limit=4G -qrr vendor/bin/phpunit -c phpunit.xml --log-junit ./results/results.xml --coverage-clover ./results/coverage.xml diff --git a/composer.json b/composer.json index d328bca..116b5a3 100644 --- a/composer.json +++ b/composer.json @@ -16,13 +16,10 @@ ], "require": { "php": "^7.4 || ^8.0", - "illuminate/console": "^8.0 || ^9.0", - "illuminate/http": "^8.0 || ^9.0", "illuminate/support": "^8.0 || ^9.0" }, "require-dev": { "guzzlehttp/guzzle": "^6.3 || ^7.0", - "laravel/framework": "^8.0 || ^9.0", "mockery/mockery": "^1.4", "nunomaduro/larastan": "^1.0", "ocramius/package-versions": "^1.5 || ^2.1",