Skip to content

Commit cc3b703

Browse files
MCLOUD-14501: Release cloud tools with PHP 8.5 support (#247)
1 parent a94d8fc commit cc3b703

448 files changed

Lines changed: 9860 additions & 4800 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

SplitDbCest.php

Lines changed: 0 additions & 241 deletions
This file was deleted.

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "magento/ece-tools",
33
"description": "Provides tools to build and deploy Magento 2 Enterprise Edition",
44
"type": "magento2-component",
5-
"version": "2002.2.9",
5+
"version": "2002.2.10",
66
"license": "OSL-3.0",
77
"repositories": {
88
"repo.magento.com": {
@@ -46,8 +46,8 @@
4646
"php-mock/php-mock-phpunit": "^2.0",
4747
"phpmd/phpmd": "@stable",
4848
"phpstan/phpstan": "1.2.0 || ^2.0",
49-
"phpunit/php-code-coverage": "^10.0",
50-
"phpunit/phpunit": "^10.0",
49+
"phpunit/php-code-coverage": "^10.0 || ^12.0",
50+
"phpunit/phpunit": "^10.0 || ^12.0",
5151
"squizlabs/php_codesniffer": "^3.0",
5252
"funkjedi/composer-include-files": "^1.0"
5353
},

config/eol.yaml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,52 @@
11
# Service EOLs (YYYY-MM-DD).
22
php:
33
- version: '8.1'
4-
eol: 2024-11-24
4+
eol: 2025-12-31
55
- version: '8.2'
6-
eol: 2025-12-08
7-
- version: '8.3'
86
eol: 2026-12-31
9-
- version: '8.4'
7+
- version: '8.3'
108
eol: 2027-12-31
9+
- version: '8.4'
10+
eol: 2028-12-31
1111
mariadb:
1212
- version: '10.4'
13-
eol: 2024-06-30
13+
eol: 2024-06-18
1414
- version: '10.5'
15-
eol: 2025-05-30
15+
eol: 2025-06-24
1616
- version: '10.6'
17-
eol: 2026-06-30
17+
eol: 2026-07-06
1818
- version: '10.11'
19-
eol: 2027-10-25
19+
eol: 2028-02-16
2020
- version: '11.4'
21-
eol: 2028-04-30
21+
eol: 2029-05-29
2222
opensearch:
2323
- version: '1'
24-
eol: 2024-09-30
24+
eol: 2026-11-07
2525
- version: '2'
26-
eol: 2025-02-28
26+
eol: 2026-11-07
2727
- version: '3'
2828
eol: 2026-05-06
2929
rabbitmq:
3030
- version: '3.9'
31-
eol: 2024-10-31
31+
eol: 2023-01-31
3232
- version: '3.11'
33-
eol: 2025-11-30
33+
eol: 2023-06-02
3434
- version: '3.12'
35-
eol: 2026-05-31
35+
eol: 2024-02-22
3636
- version: '3.13'
37-
eol: 2027-11-30
37+
eol: 2024-09-18
3838
- version: '4.1'
39-
eol: 2028-12-31
39+
eol: 2026-01-31
4040
redis:
4141
- version: '6.2'
42-
eol: 2024-04-30
42+
eol: 2025-02-28
4343
- version: '7.0'
44-
eol: 2026-04-30
44+
eol: 2024-07-29
4545
- version: '7.2'
46-
eol: 2028-06-30
46+
eol: 2026-02-28
4747
valkey:
4848
- version: '8.0'
4949
eol: 2027-09-15
5050
activemq-artemis:
5151
- version: '2.42.0'
52-
eol: 2026-07-17
52+
eol: 2025-10-13

src/App/Container.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,7 @@
1919
use Exception;
2020

2121
/**
22-
* @inheritdoc
23-
* @codeCoverageIgnore
24-
* @SuppressWarnings("PHPMD.CouplingBetweenObjects")
22+
* Dependency injection container for ECE-Tools.
2523
*/
2624
class Container implements ContainerInterface
2725
{

0 commit comments

Comments
 (0)