diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a30f70c..be4847f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: true matrix: - php: [7.2, 7.3, 7.4, '8.0', 8.1, 8.2, 8.3, 8.4] + php: [7.2, 7.3, 7.4, '8.0', 8.1, 8.2, 8.3, 8.4, 8.5] name: PHP ${{ matrix.php }} diff --git a/composer.json b/composer.json index c4c59b7..a31330f 100644 --- a/composer.json +++ b/composer.json @@ -19,7 +19,7 @@ }, "require-dev": { "phpstan/phpstan": "^1.10", - "phpunit/phpunit": "^7.0|^8.0|^9.0|^10.0" + "phpunit/phpunit": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0" }, "autoload": { "files": [ @@ -37,9 +37,12 @@ } }, "config": { + "audit": { + "block-insecure": false + }, + "optimize-autoloader": true, "preferred-install": "dist", - "sort-packages": true, - "optimize-autoloader": true + "sort-packages": true }, "minimum-stability": "dev", "prefer-stable": true