Skip to content

Commit 80123f6

Browse files
author
Oliver Kossin
committed
Update Composer.json and Workflows
1 parent a19ac3f commit 80123f6

File tree

3 files changed

+36
-7
lines changed

3 files changed

+36
-7
lines changed

.github/workflows/test-application.yaml

+32-3
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,43 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
include:
22+
- php-version: '7.3'
23+
coverage: false
24+
dependency-versions: 'lowest'
25+
tools: 'composer:v2'
26+
env:
27+
SYMFONY_DEPRECATIONS_HELPER: disabled
28+
29+
- php-version: '7.4'
30+
coverage: true
31+
dependency-versions: 'highest'
32+
tools: 'composer:v2'
33+
env:
34+
SYMFONY_DEPRECATIONS_HELPER: weak
35+
36+
- php-version: '8.0'
37+
coverage: false
38+
dependency-versions: 'highest'
39+
tools: 'composer:v2'
40+
env:
41+
SYMFONY_DEPRECATIONS_HELPER: weak
42+
43+
- php-version: '8.1'
44+
coverage: false
45+
dependency-versions: 'highest'
46+
tools: 'composer:v2'
47+
env:
48+
SYMFONY_DEPRECATIONS_HELPER: weak
49+
2250
- php-version: '8.2'
23-
lint: true
51+
coverage: false
2452
dependency-versions: 'highest'
2553
tools: 'composer:v2'
2654
env:
27-
SYMFONY_DEPRECATIONS_HELPER: disabled
55+
SYMFONY_DEPRECATIONS_HELPER: weak
56+
2857
- php-version: '8.3'
29-
lint: true
58+
coverage: false
3059
dependency-versions: 'highest'
3160
tools: 'composer:v2'
3261
env:

Tests/Application/.env

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
APP_ENV=test
2-
DATABASE_URL=mysql://[email protected]:3306/su_comment_test
2+
DATABASE_URL="mysql://root:ChangeMe@127.0.0.1:3306/su_myapp?serverVersion=8.0.32&charset=utf8mb4"

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
"type": "sulu-bundle",
55
"license": "MIT",
66
"require": {
7-
"php": "^8.2 || ^8.3",
7+
"php": "^7.3 || ^8.0",
88
"friendsofsymfony/rest-bundle": "^2.6 || ^3.0",
9-
"sulu/sulu": "^2.5 || ^2.6@dev",
9+
"sulu/sulu": "^2.4 || ^2.5@dev",
1010
"symfony/config": "^5.4 || ^6.0 || ^7.0",
1111
"symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
1212
"symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0",
@@ -26,7 +26,7 @@
2626
"phpstan/phpstan-doctrine": "^1.0",
2727
"phpstan/phpstan-phpunit": "^1.0",
2828
"phpstan/phpstan-symfony": "^1.0",
29-
"phpunit/phpunit": "^8.0 || ^9.0",
29+
"phpunit/phpunit": "^9.6",
3030
"symfony/browser-kit": "^5.4 || ^6.0 || ^7.0",
3131
"symfony/dotenv": "^5.4 || ^6.0 || ^7.0",
3232
"symfony/form": "^5.4 || ^6.0 || ^7.0",

0 commit comments

Comments
 (0)