Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ jobs:
fail-fast: false
matrix:
php:
- '8.2'
- '8.3'
env:
PHP_VERSION: '${{ matrix.php }}'
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
4 changes: 2 additions & 2 deletions config/requirements.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

/*
Expand Down
Loading