Skip to content

Commit 088d015

Browse files
committed
Merge remote-tracking branch 'upstream/develop' into 4.5
2 parents e3fe895 + eaf2e08 commit 088d015

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22
33
Each pull request should address a single issue and have a meaningful title.
44
5+
- PR title must include the type (feat, fix, chore, docs, perf, refactor, style, test) of the commit per Conventional Commits specification. See https://www.conventionalcommits.org/en/v1.0.0/ for the discussion.
56
- Pull requests must be in English.
67
- If a pull request fixes an issue, reference the issue with a suitable keyword (e.g., Fixes <issue number>).
78
- All bug fixes should be sent to the __"develop"__ branch, this is where the next bug fix version will be developed.
8-
- PRs with any enhancement should be sent to the next minor version branch, e.g. __"4.3"__
9+
- PRs with any enhancement should be sent to the next minor version branch, e.g. __"4.5"__
910
1011
-->
1112
**Description**

admin/framework/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"require-dev": {
2020
"codeigniter/coding-standard": "^1.7",
2121
"fakerphp/faker": "^1.9",
22-
"friendsofphp/php-cs-fixer": "^3.43",
22+
"friendsofphp/php-cs-fixer": "~3.46.0",
2323
"kint-php/kint": "^5.0.4",
2424
"mikey179/vfsstream": "^1.6",
2525
"nexusphp/cs-config": "^3.6",

composer.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"codeigniter/phpstan-codeigniter": "^1.4",
2222
"ergebnis/composer-normalize": "^2.28",
2323
"fakerphp/faker": "^1.9",
24-
"friendsofphp/php-cs-fixer": "^3.43",
24+
"friendsofphp/php-cs-fixer": "~3.46.0",
2525
"kint-php/kint": "^5.0.4",
2626
"mikey179/vfsstream": "^1.6",
2727
"nexusphp/cs-config": "^3.6",
@@ -32,7 +32,7 @@
3232
"phpunit/phpcov": "^8.2",
3333
"phpunit/phpunit": "^9.1",
3434
"predis/predis": "^1.1 || ^2.0",
35-
"rector/rector": "0.18.13",
35+
"rector/rector": "0.19.0",
3636
"vimeo/psalm": "^5.0"
3737
},
3838
"replace": {
@@ -90,8 +90,7 @@
9090
},
9191
"scripts": {
9292
"post-update-cmd": [
93-
"CodeIgniter\\ComposerScripts::postUpdate",
94-
"bash -c \"if [ -f admin/setup.sh ]; then bash admin/setup.sh; fi\""
93+
"CodeIgniter\\ComposerScripts::postUpdate"
9594
],
9695
"analyze": [
9796
"Composer\\Config::disableProcessTimeout",

rector.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
PHPUnitSetList::PHPUNIT_100,
6363
]);
6464

65-
$rectorConfig->parallel();
65+
$rectorConfig->parallel(120);
6666

6767
// paths to refactor; solid alternative to CLI arguments
6868
$rectorConfig->paths([__DIR__ . '/app', __DIR__ . '/system', __DIR__ . '/tests', __DIR__ . '/utils']);

utils/Rector/PassStrictParameterToFunctionParameterRector.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
use PhpParser\Node\Expr\ConstFetch;
1919
use PhpParser\Node\Expr\FuncCall;
2020
use PhpParser\Node\Name;
21-
use Rector\Core\Rector\AbstractRector;
21+
use Rector\Rector\AbstractRector;
2222
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
2323
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
2424

utils/Rector/RemoveErrorSuppressInTryCatchStmtsRector.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
use PhpParser\Node\Stmt\Function_;
2020
use PhpParser\Node\Stmt\TryCatch;
2121
use PhpParser\NodeTraverser;
22-
use Rector\Core\Rector\AbstractRector;
22+
use Rector\Rector\AbstractRector;
2323
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
2424
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
2525

utils/Rector/UnderscoreToCamelCaseVariableNameRector.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
use PhpParser\Node\Stmt\Function_;
2323
use PhpParser\Node\Stmt\Namespace_;
2424
use Rector\BetterPhpDocParser\PhpDocInfo\PhpDocInfoFactory;
25-
use Rector\Core\Php\ReservedKeywordAnalyzer;
26-
use Rector\Core\PhpParser\Node\CustomNode\FileWithoutNamespace;
27-
use Rector\Core\Rector\AbstractRector;
25+
use Rector\Php\ReservedKeywordAnalyzer;
26+
use Rector\PhpParser\Node\CustomNode\FileWithoutNamespace;
27+
use Rector\Rector\AbstractRector;
2828
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
2929
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
3030

0 commit comments

Comments
 (0)