diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 7791e44..339e713 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -32,7 +32,6 @@ jobs: fail-fast: false matrix: php: - - '8.2' - '8.3' env: PHP_VERSION: '${{ matrix.php }}' diff --git a/README.md b/README.md index 4a0597b..4743127 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ This is the skeleton app to build BEdita5 API projects. ## Requirements -1. PHP >= 8.2 +1. PHP >= 8.3 1. Download latest [Composer](https://getcomposer.org/doc/00-intro.md) or update via `composer self-update`. ## Installation diff --git a/composer.json b/composer.json index ba873a8..5896923 100644 --- a/composer.json +++ b/composer.json @@ -5,24 +5,24 @@ "homepage": "https://www.bedita.com", "license": "MIT", "require": { - "php": ">=8.2", - "bedita/api": "^5.29", + "php": ">=8.3", + "bedita/api": "^5.36", "bedita/aws": "^3.0.5", - "bedita/core": "^5.29", + "bedita/core": "^5.36", "cakephp/cakephp": "^4.5.0", "cakephp/plugin-installer": "^1.3.1" }, "require-dev": { - "bedita/dev-tools": "^2.1.4", + "bedita/dev-tools": "^2", "cakephp/bake": "^2.8", "cakephp/cakephp-codesniffer": "~4.7.0", "cakephp/debug_kit": "^4.9.3", "cakephp/repl": "^0.1", "dereuromark/cakephp-ide-helper": "^1.18", "josegonzalez/dotenv": "^3.2", - "phpstan/phpstan": "^1.9.14", - "phpunit/phpunit": "^9.5" + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^9.6" }, "autoload": { "psr-4": { diff --git a/config/requirements.php b/config/requirements.php index f465b41..e875154 100644 --- a/config/requirements.php +++ b/config/requirements.php @@ -20,8 +20,8 @@ /* * You can remove this if you are confident that your PHP version is sufficient. */ -if (version_compare(PHP_VERSION, '7.4.0') < 0) { - trigger_error('Your PHP version must be equal or higher than 7.4.0 to use BEdita.' . PHP_EOL, E_USER_ERROR); +if (version_compare(PHP_VERSION, '8.3.0') < 0) { + trigger_error('Your PHP version must be equal or higher than 8.3.0 to use BEdita.' . PHP_EOL, E_USER_ERROR); } /*