Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 4 additions & 0 deletions .rector.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
use Rector\Php82\Rector as Php82;
use Rector\Php83\Rector as Php83;
use Rector\Php84\Rector as Php84;
use Rector\Php85\Rector as Php85;
use Rector\PHPUnit\CodeQuality\Rector\Class_\PreferPHPUnitThisCallRector;
use Rector\Privatization\Rector as Privatization;
use Rector\Renaming\Rector as Renaming;
Expand All @@ -39,6 +40,9 @@
__DIR__,
])
->withSkipPath(__DIR__ . '/vendor')
->withRules([
Php85\ArrayDimFetch\ArrayFirstLastRector::class,
])
->withSkip([
CodeQuality\Assign\CombinedAssignRector::class, # todo: TMP
CodeQuality\BooleanNot\SimplifyDeMorganBinaryRector::class,
Expand Down
13 changes: 7 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
],
"type": "magento-source",
"require": {
"php": ">=8.1 <8.5",
"php": ">=8.1 <8.6",
"ext-ctype": "*",
"ext-curl": "*",
"ext-dom": "*",
Expand Down Expand Up @@ -41,9 +41,10 @@
"phpseclib/mcrypt_compat": "^2.0.3",
"phpseclib/phpseclib": "^3.0.14",
"shardj/zf1-future": "^1.24.1",
"symfony/polyfill-php82": "^1.31",
"symfony/polyfill-php83": "^1.31",
"symfony/polyfill-php84": "^1.31",
"symfony/polyfill-php82": "^1.32",
"symfony/polyfill-php83": "^1.32",
"symfony/polyfill-php84": "^1.32",
"symfony/polyfill-php85": "^1.32",
"symfony/string": "^6.4",
"symfony/translation-contracts": "^3.5",
"tinymce/tinymce": "^7.5"
Expand All @@ -60,10 +61,10 @@
"phpcompatibility/php-compatibility": "^9.3",
"phpmd/phpmd": "^2.13",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan": "^2.1.18",
"phpstan/phpstan-phpunit": "^2.0",
"phpunit/phpunit": "^9.6",
"rector/rector": "^2.0",
"rector/rector": "^2.1.2",
"squizlabs/php_codesniffer": "^3.7",
"symplify/vendor-patches": "^11.1"
},
Expand Down
104 changes: 90 additions & 14 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/content/users/requirements.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ tags:
# Requirements

- PHP 8.1+[^1]
- PHP 8.4 supported but some warnings may be shown/logged
- PHP 8.4/8.5 supported but some warnings may be shown/logged
- MySQL 5.6+ (8.0+ recommended) or MariaDB
- optional: Redis 5.x, 6.x and 7.0.x are supported

Expand Down
Loading