Skip to content

Commit 300907a

Browse files
committed
Merge branch '3.x' into 3.next
2 parents 9a639c0 + 8d5e199 commit 300907a

35 files changed

+253
-283
lines changed

.github/workflows/deploy_docs_2x.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Cloning repo
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616
with:
1717
fetch-depth: 0
1818

.github/workflows/deploy_docs_3x.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Cloning repo
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616
with:
1717
fetch-depth: 0
1818

.phive/phars.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phive xmlns="https://phar.io/phive">
3-
<phar name="phpstan" version="2.1.0" installed="2.1.0" location="./tools/phpstan" copy="false"/>
4-
<phar name="psalm" version="5.26.1" installed="5.26.1" location="./tools/psalm" copy="false"/>
3+
<phar name="phpstan" version="2.1.17" installed="2.1.17" location="./tools/phpstan" copy="false"/>
54
</phive>

composer.json

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"require-dev": {
3232
"cakephp/cakephp-codesniffer": "^5.0.0",
3333
"cakephp/debug_kit": "^5.0.0",
34-
"phpunit/phpunit": "^10.5.5 || ^11.1.3"
34+
"phpunit/phpunit": "^10.5.40 || ^11.5.20 || ^12.2.4"
3535
},
3636
"autoload": {
3737
"psr-4": {
@@ -61,12 +61,7 @@
6161
"cs-check": "phpcs --parallel=16 -p src/ tests/",
6262
"cs-fix": "phpcbf --parallel=16 -p src/ tests/",
6363
"phpstan": "tools/phpstan analyse",
64-
"psalm": "tools/psalm --show-info=false",
65-
"psalm-baseline": "tools/psalm --set-baseline=psalm-baseline.xml",
66-
"stan": [
67-
"@phpstan",
68-
"@psalm"
69-
],
64+
"stan": "@phpstan",
7065
"stan-baseline": "tools/phpstan --generate-baseline",
7166
"stan-setup": "phive install",
7267
"test": "phpunit",

docs/en/development.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ looks like this::
129129
/**
130130
* Hook method for defining this command's option parser.
131131
*
132-
* @see https://book.cakephp.org/5/en/console-commands/commands.html#defining-arguments-and-options
132+
* @link https://book.cakephp.org/5/en/console-commands/commands.html#defining-arguments-and-options
133133
* @param \Cake\Console\ConsoleOptionParser $parser The parser to be defined
134134
* @return \Cake\Console\ConsoleOptionParser The built parser.
135135
*/
@@ -172,7 +172,7 @@ And the resultant baked class (**src/Command/FooCommand.php**) looks like this::
172172
/**
173173
* Hook method for defining this command's option parser.
174174
*
175-
* @see https://book.cakephp.org/5/en/console-commands/commands.html#defining-arguments-and-options
175+
* @link https://book.cakephp.org/5/en/console-commands/commands.html#defining-arguments-and-options
176176
* @param \Cake\Console\ConsoleOptionParser $parser The parser to be defined
177177
* @return \Cake\Console\ConsoleOptionParser The built parser.
178178
*/

docs/fr/development.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ ressemble à ceci::
137137
/**
138138
* Méthode hook pour définir le parseur d'option de cette commande.
139139
*
140-
* @see https://book.cakephp.org/5/fr/console-commands/commands.html#defining-arguments-and-options
140+
* @link https://book.cakephp.org/5/fr/console-commands/commands.html#defining-arguments-and-options
141141
* @param \Cake\Console\ConsoleOptionParser $parser Le parseur à définir
142142
* @return \Cake\Console\ConsoleOptionParser Le parseur construit.
143143
*/
@@ -181,7 +181,7 @@ ressemble à ceci::
181181
/**
182182
* Méthode hook pour définir le parseur d'option de cette commande.
183183
*
184-
* @see https://book.cakephp.org/5/fr/console-commands/commands.html#defining-arguments-and-options
184+
* @link https://book.cakephp.org/5/fr/console-commands/commands.html#defining-arguments-and-options
185185
* @param \Cake\Console\ConsoleOptionParser $parser Le parseur à définir
186186
* @return \Cake\Console\ConsoleOptionParser Le parseur construit.
187187
*/

0 commit comments

Comments
 (0)