diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 7070cea..762c8e1 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -16,10 +16,10 @@ jobs: strategy: matrix: operating-system: [ubuntu-latest] - php-version: ['8.1', '8.2', '8.3'] + php-version: ['8.1', '8.2', '8.3', '8.4'] include: - operating-system: 'ubuntu-latest' - php-version: '8.3' + php-version: '8.4' run-sonarqube-analysis: true services: diff --git a/composer.json b/composer.json index 69fd1cf..b408bf0 100644 --- a/composer.json +++ b/composer.json @@ -17,22 +17,22 @@ "require": { "php": "^8.1", "ext-redis": "*", - "illuminate/contracts": "^8.0|^9.0|^10.0|^11.0", - "illuminate/redis": "^8.0|^9.0|^10.0|^11.0", - "illuminate/support": "^8.0|^9.0|^10.0|^11.0" + "illuminate/contracts": "^8.0|^9.0|^10.0|^11.0|^12.0", + "illuminate/redis": "^8.0|^9.0|^10.0|^11.0|^12.0", + "illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.0", - "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0" + "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0|^10.0" }, "scripts": { "test": [ "@test:cs", "@test:unit" ], - "test:cs": "vendor/bin/php-cs-fixer fix --dry-run --diff --ansi", + "test:cs": "PHP_CS_FIXER_IGNORE_ENV=true vendor/bin/php-cs-fixer fix --dry-run --diff --ansi", "test:unit": "vendor/bin/phpunit --testdox --log-junit=phpunit.report-junit.xml --coverage-clover=phpunit.coverage-clover.xml --coverage-text", - "fix:cs": "vendor/bin/php-cs-fixer fix --diff --ansi" + "fix:cs": "PHP_CS_FIXER_IGNORE_ENV=true vendor/bin/php-cs-fixer fix --diff --ansi" }, "autoload": { "psr-4": {