From 44379b3b22ef0de5b15b5d2add3e5dd906fd14b2 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 20 Mar 2024 03:00:24 +0000 Subject: [PATCH] fix tests --- README.md | 4 ++-- composer.json | 10 +++++----- tests/Controller/ApiControllerTest.php | 12 ++++++------ tests/Models/ExchangeLogTest.php | 6 +++--- tests/Models/InterfaceManagerTest.php | 2 +- tests/Models/NullExchangeLogTest.php | 6 +++--- tests/Models/NullExchangeSettingTest.php | 6 +++--- tests/Models/NullInterfaceManagerTest.php | 6 +++--- 8 files changed, 26 insertions(+), 26 deletions(-) diff --git a/README.md b/README.md index 4cb40c2..51f9ea4 100755 --- a/README.md +++ b/README.md @@ -18,8 +18,8 @@ With Karaka you have one partner who can provide many tools and software solutio ## Requirements -* PHP 8.1 -* PHP extension: php8.1-dev php8.1-cli php8.1-common php8.1-mysql php8.1-pgsql php8.1-xdebug php8.1-opcache php8.1-pdo php8.1-sqlite php8.1-mbstring php8.1-curl php8.1-imap php8.1-bcmath php8.1-zip php8.1-dom php8.1-xml php8.1-phar php8.1-gd php-pear +* PHP 8.2 +* PHP extension: php8.2-dev php8.2-cli php8.2-common php8.2-intl php8.2-mysql php8.2-pgsql php8.2-xdebug php8.2-opcache php8.2-pdo php8.2-sqlite php8.2-mbstring php8.2-curl php8.2-imap php8.2-bcmath php8.2-zip php8.2-dom php8.2-xml php8.2-phar php8.2-gd php-pear * apache2 (recommended) or nginx * mysql-server (recommended) or postgresql postgresql-contrib * Tools: tesseract-ocr, pdftotext, pdftoppm diff --git a/composer.json b/composer.json index 2e47a08..7bd5508 100755 --- a/composer.json +++ b/composer.json @@ -8,15 +8,15 @@ } ], "require-dev": { - "phpunit/phpunit": ">=9.4", - "friendsofphp/php-cs-fixer": ">=3.8", - "squizlabs/php_codesniffer": ">=3.6", + "phpunit/phpunit": ">=11.0", + "friendsofphp/php-cs-fixer": ">=3.51", + "squizlabs/php_codesniffer": ">=3.7", "phpmd/phpmd": ">=2.9", - "phpstan/phpstan": ">=1.8.6", + "phpstan/phpstan": ">=1.10.62", "phan/phan": ">=3.2.6", "phploc/phploc": ">=7.0", "phpmetrics/phpmetrics": ">=2.8", - "rector/rector": ">=0.18.0" + "rector/rector": ">=1.0.3" }, "minimum-stability": "dev", "prefer-stable": true diff --git a/tests/Controller/ApiControllerTest.php b/tests/Controller/ApiControllerTest.php index 6f4ca8b..080ec19 100755 --- a/tests/Controller/ApiControllerTest.php +++ b/tests/Controller/ApiControllerTest.php @@ -93,7 +93,7 @@ final class ApiControllerTest extends \PHPUnit\Framework\TestCase } /** - * @covers Modules\Exchange\Controller\ApiController + * @covers \Modules\Exchange\Controller\ApiController * @group module */ public function testInterfaceInstall() : void @@ -177,7 +177,7 @@ final class ApiControllerTest extends \PHPUnit\Framework\TestCase } /** - * @covers Modules\Exchange\Controller\ApiController + * @covers \Modules\Exchange\Controller\ApiController * @group module */ public function testInterfaceInstallInvalidData() : void @@ -193,7 +193,7 @@ final class ApiControllerTest extends \PHPUnit\Framework\TestCase } /** - * @covers Modules\Exchange\Controller\ApiController + * @covers \Modules\Exchange\Controller\ApiController * @group module */ public function testExport() : void @@ -210,7 +210,7 @@ final class ApiControllerTest extends \PHPUnit\Framework\TestCase } /** - * @covers Modules\Exchange\Controller\ApiController + * @covers \Modules\Exchange\Controller\ApiController * @group module */ public function testExportInvalidInterface() : void @@ -227,7 +227,7 @@ final class ApiControllerTest extends \PHPUnit\Framework\TestCase } /** - * @covers Modules\Exchange\Controller\ApiController + * @covers \Modules\Exchange\Controller\ApiController * @group module */ public function testLanguageImport() : void @@ -261,7 +261,7 @@ final class ApiControllerTest extends \PHPUnit\Framework\TestCase } /** - * @covers Modules\Exchange\Controller\ApiController + * @covers \Modules\Exchange\Controller\ApiController * @group module */ public function testImportInvalidInterface() : void diff --git a/tests/Models/ExchangeLogTest.php b/tests/Models/ExchangeLogTest.php index 1062cb5..fa8f429 100755 --- a/tests/Models/ExchangeLogTest.php +++ b/tests/Models/ExchangeLogTest.php @@ -33,7 +33,7 @@ final class ExchangeLogTest extends \PHPUnit\Framework\TestCase } /** - * @covers Modules\Exchange\Models\ExchangeLog + * @covers \Modules\Exchange\Models\ExchangeLog * @group module */ public function testDefault() : void @@ -48,7 +48,7 @@ final class ExchangeLogTest extends \PHPUnit\Framework\TestCase } /** - * @covers Modules\Exchange\Models\ExchangeLog + * @covers \Modules\Exchange\Models\ExchangeLog * @group module */ public function testFieldsInputOutput() : void @@ -61,7 +61,7 @@ final class ExchangeLogTest extends \PHPUnit\Framework\TestCase } /** - * @covers Modules\Exchange\Models\ExchangeLog + * @covers \Modules\Exchange\Models\ExchangeLog * @group module */ public function testSerialize() : void diff --git a/tests/Models/InterfaceManagerTest.php b/tests/Models/InterfaceManagerTest.php index 7cd2722..0294b2d 100755 --- a/tests/Models/InterfaceManagerTest.php +++ b/tests/Models/InterfaceManagerTest.php @@ -32,7 +32,7 @@ final class InterfaceManagerTest extends \PHPUnit\Framework\TestCase } /** - * @covers Modules\Exchange\Models\InterfaceManager + * @covers \Modules\Exchange\Models\InterfaceManager * @group module */ public function testDefault() : void diff --git a/tests/Models/NullExchangeLogTest.php b/tests/Models/NullExchangeLogTest.php index be2d4d8..4c981e3 100755 --- a/tests/Models/NullExchangeLogTest.php +++ b/tests/Models/NullExchangeLogTest.php @@ -22,7 +22,7 @@ use Modules\Exchange\Models\NullExchangeLog; final class NullExchangeLogTest extends \PHPUnit\Framework\TestCase { /** - * @covers Modules\Exchange\Models\NullExchangeLog + * @covers \Modules\Exchange\Models\NullExchangeLog * @group module */ public function testNull() : void @@ -31,7 +31,7 @@ final class NullExchangeLogTest extends \PHPUnit\Framework\TestCase } /** - * @covers Modules\Exchange\Models\NullExchangeLog + * @covers \Modules\Exchange\Models\NullExchangeLog * @group module */ public function testId() : void @@ -41,7 +41,7 @@ final class NullExchangeLogTest extends \PHPUnit\Framework\TestCase } /** - * @covers Modules\Exchange\Models\NullExchangeLog + * @covers \Modules\Exchange\Models\NullExchangeLog * @group module */ public function testJsonSerialize() : void diff --git a/tests/Models/NullExchangeSettingTest.php b/tests/Models/NullExchangeSettingTest.php index c065d3f..eda08a9 100644 --- a/tests/Models/NullExchangeSettingTest.php +++ b/tests/Models/NullExchangeSettingTest.php @@ -22,7 +22,7 @@ use Modules\Exchange\Models\NullExchangeSetting; final class NullExchangeSettingTest extends \PHPUnit\Framework\TestCase { /** - * @covers Modules\Exchange\Models\NullExchangeSetting + * @covers \Modules\Exchange\Models\NullExchangeSetting * @group module */ public function testNull() : void @@ -31,7 +31,7 @@ final class NullExchangeSettingTest extends \PHPUnit\Framework\TestCase } /** - * @covers Modules\Exchange\Models\NullExchangeSetting + * @covers \Modules\Exchange\Models\NullExchangeSetting * @group module */ public function testId() : void @@ -41,7 +41,7 @@ final class NullExchangeSettingTest extends \PHPUnit\Framework\TestCase } /** - * @covers Modules\Exchange\Models\NullExchangeSetting + * @covers \Modules\Exchange\Models\NullExchangeSetting * @group module */ public function testJsonSerialize() : void diff --git a/tests/Models/NullInterfaceManagerTest.php b/tests/Models/NullInterfaceManagerTest.php index 129beca..9e1adff 100755 --- a/tests/Models/NullInterfaceManagerTest.php +++ b/tests/Models/NullInterfaceManagerTest.php @@ -22,7 +22,7 @@ use Modules\Exchange\Models\NullInterfaceManager; final class NullInterfaceManagerTest extends \PHPUnit\Framework\TestCase { /** - * @covers Modules\Exchange\Models\NullInterfaceManager + * @covers \Modules\Exchange\Models\NullInterfaceManager * @group module */ public function testNull() : void @@ -31,7 +31,7 @@ final class NullInterfaceManagerTest extends \PHPUnit\Framework\TestCase } /** - * @covers Modules\Exchange\Models\NullInterfaceManager + * @covers \Modules\Exchange\Models\NullInterfaceManager * @group module */ public function testId() : void @@ -41,7 +41,7 @@ final class NullInterfaceManagerTest extends \PHPUnit\Framework\TestCase } /** - * @covers Modules\Exchange\Models\NullInterfaceManager + * @covers \Modules\Exchange\Models\NullInterfaceManager * @group module */ public function testJsonSerialize() : void