Skip to content

Commit 58e4a9c

Browse files
committed
Merge remote-tracking branch 'origin/5.x' into 5.next
# Conflicts: # composer.json
2 parents 2f5a0cc + 64045e1 commit 58e4a9c

7 files changed

Lines changed: 10 additions & 13 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name: CI
33
on:
44
push:
55
branches:
6-
- '4.x'
7-
- '4.next'
86
- '5.x'
7+
- '5.next'
8+
- '6.x'
99
pull_request:
1010
branches:
1111
- '*'
@@ -16,18 +16,15 @@ permissions:
1616

1717
jobs:
1818
testsuite:
19-
runs-on: ubuntu-22.04
19+
runs-on: ubuntu-24.04
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
php-version: ['8.1', '8.3']
24-
dependencies: ['highest']
2523
include:
2624
- php-version: '8.1'
2725
dependencies: 'lowest'
2826
- php-version: '8.4'
2927
dependencies: 'highest'
30-
composer-options: '--ignore-platform-req=php'
3128

3229
steps:
3330
- uses: actions/checkout@v4
@@ -56,7 +53,7 @@ jobs:
5653

5754
coding-standard:
5855
name: Coding Standard & Static Analysis
59-
runs-on: ubuntu-22.04
56+
runs-on: ubuntu-24.04
6057

6158
steps:
6259
- uses: actions/checkout@v4

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"cakephp/cakephp-codesniffer": "^5.0",
1717
"cakephp/debug_kit": "^5.0.0",
1818
"josegonzalez/dotenv": "^4.0",
19-
"phpunit/phpunit": "^10.5.5 || ^11.1.3"
19+
"phpunit/phpunit": "^10.5.5 || ^11.1.3 || ^12.1"
2020
},
2121
"suggest": {
2222
"cakephp/repl": "Console tools for a REPL interface for CakePHP applications.",

config/paths.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
}
2121

2222
/*
23-
* These defines should only be edited if you have cake installed in
23+
* These definitions should only be edited if you have cake installed in
2424
* a directory layout other than the way it is distributed.
2525
* When using custom settings be sure to use the DS and do not add a trailing DS.
2626
*/

config/schema/sessions.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ CREATE TABLE `sessions` (
1212
`data` blob DEFAULT NULL, -- for PostgreSQL use bytea instead of blob
1313
`expires` int(10) unsigned DEFAULT NULL,
1414
PRIMARY KEY (`id`)
15-
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
15+
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

src/Application.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public function bootstrap(): void
5151
if (PHP_SAPI !== 'cli') {
5252
FactoryLocator::add(
5353
'Table',
54-
(new TableLocator())->allowFallbackClass(false)
54+
(new TableLocator())->allowFallbackClass(false),
5555
);
5656
}
5757
}

src/Console/Installer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ public static function setFolderPermissions(string $dir, IOInterface $io): void
130130
'<info>Set Folder Permissions ? (Default to Y)</info> [<comment>Y,n</comment>]? ',
131131
$validator,
132132
10,
133-
'Y'
133+
'Y',
134134
);
135135

136136
if (in_array($setFolderPermissions, ['n', 'N'])) {

src/Controller/ErrorController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class ErrorController extends AppController
3232
*/
3333
public function initialize(): void
3434
{
35-
// Only add parent::initialize() if you are confident your appcontroller is safe.
35+
// Only add parent::initialize() if you are confident your `AppController` is safe.
3636
}
3737

3838
/**

0 commit comments

Comments
 (0)