Skip to content

Commit c0e0d34

Browse files
committed
MCLOUD-11526: Add php 8.3 to ece-tools
1 parent 3ffc52a commit c0e0d34

File tree

3 files changed

+22
-8
lines changed

3 files changed

+22
-8
lines changed

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,19 +30,19 @@
3030
"psr/container": "^1.0",
3131
"psr/log": "^1.0",
3232
"symfony/config": "^4.4 || ^5.1 || ^5.4 || ^6.4",
33-
"symfony/console": "^2.8 || ^4.0 || ^5.1 || ^5.4 || ^6.4",
33+
"symfony/console": "^6.4",
3434
"symfony/dependency-injection": "^3.3 || ^4.3 || ^5.1 || ^5.4 || ^6.4",
3535
"symfony/process": "^2.1 || ^4.1 || ^5.1 || ^5.4 || ^6.4",
3636
"symfony/serializer": "^2.8 || ^3.3 || ^4.0 || ^5.4 || ^6.4",
3737
"symfony/yaml": "^3.3 || ^4.0 || ^5.1 || ^5.4 || ^6.4"
3838
},
3939
"require-dev": {
40-
"codeception/codeception": "^4.1",
41-
"codeception/module-asserts": "^1.2",
42-
"codeception/module-db": "^1.0",
43-
"codeception/module-phpbrowser": "^1.0",
44-
"codeception/module-rest": "^1.2",
45-
"consolidation/robo": "^1.2",
40+
"codeception/codeception": "^4.1 || ^5.1",
41+
"codeception/module-asserts": "^1.2 || ^3.0",
42+
"codeception/module-db": "^1.0 || ^3.0",
43+
"codeception/module-phpbrowser": "^1.0 || ^3.0",
44+
"codeception/module-rest": "^1.2 || ^3.0",
45+
"consolidation/robo": "^1.2 || ^3.0",
4646
"php-mock/php-mock-phpunit": "^2.0",
4747
"phpmd/phpmd": "@stable",
4848
"phpstan/phpstan": "^0.12",

src/Application.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public function getContainer(): ContainerInterface
4848
/**
4949
* @inheritdoc
5050
*/
51-
protected function getDefaultCommands()
51+
protected function getDefaultCommands(): array
5252
{
5353
return array_merge(parent::getDefaultCommands(), [
5454
$this->container->create(Command\Build::class),
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
stage:
2+
build:
3+
SCD_THREADS: 3
4+
ERROR_REPORT_DIR_NESTING_LEVEL: 10
5+
deploy:
6+
DATABASE_CONFIGURATION:
7+
_merge: true
8+
connection:
9+
default:
10+
host: localhost
11+
port: '3307'
12+
password: '1234'
13+
user: localuser
14+
LOCK_PROVIDER: db

0 commit comments

Comments
 (0)