diff --git a/.gitignore b/.gitignore index a0c8ed86..a3c52785 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ /laminas-mkdoc-theme/ /phpunit.xml /vendor/ +.phpcs-cache diff --git a/.laminas-ci.json b/.laminas-ci.json index 0d667160..22d49f42 100644 --- a/.laminas-ci.json +++ b/.laminas-ci.json @@ -1,5 +1,8 @@ { "extensions": [ "gd" - ] -} + ], + "ignore_php_platform_requirements": { + "8.2": true + } +} \ No newline at end of file diff --git a/composer.json b/composer.json index fe0de853..536ea669 100644 --- a/composer.json +++ b/composer.json @@ -16,10 +16,16 @@ "forum": "https://discourse.laminas.dev" }, "config": { - "sort-packages": true + "sort-packages": true, + "platform": { + "php": "8.0.99" + }, + "allow-plugins": { + "dealerdirect/phpcodesniffer-composer-installer": true + } }, "require": { - "php": "~7.4.0 || ~8.0.0 || ~8.1.0", + "php": "~8.0.0 || ~8.1.0 || ~8.2.0", "laminas/laminas-servicemanager": "^3.10.0", "laminas/laminas-stdlib": "^3.6.0", "laminas/laminas-validator": "^2.15.1" @@ -27,7 +33,7 @@ "require-dev": { "laminas/laminas-coding-standard": "~2.3.0", "laminas/laminas-config": "^3.7.0", - "phpunit/phpunit": "^9.3.7" + "phpunit/phpunit": "^9.5" }, "autoload": { "psr-4": { diff --git a/composer.lock b/composer.lock index afbda591..b08b483d 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "74a171cce562b785c32f723e84cb9f4e", + "content-hash": "d4087433673e92dbdf8d8567cb08e071", "packages": [ { "name": "container-interop/container-interop", @@ -2839,8 +2839,11 @@ "prefer-stable": false, "prefer-lowest": false, "platform": { - "php": "~7.4.0 || ~8.0.0 || ~8.1.0" + "php": "~8.0.0 || ~8.1.0 || ~8.2.0" }, "platform-dev": [], - "plugin-api-version": "2.1.0" + "platform-overrides": { + "php": "8.0.99" + }, + "plugin-api-version": "2.3.0" } diff --git a/phpunit.xml.dist b/phpunit.xml.dist index c87defc1..caa5853f 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -1,19 +1,20 @@ - ./test + test - - - ./src - - + + + src + +