Skip to content

Commit

Permalink
Update Composer.json and Workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
TheCadien committed Jul 18, 2024
1 parent a19ac3f commit 80123f6
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 7 deletions.
35 changes: 32 additions & 3 deletions .github/workflows/test-application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,43 @@ jobs:
fail-fast: false
matrix:
include:
- php-version: '7.3'
coverage: false
dependency-versions: 'lowest'
tools: 'composer:v2'
env:
SYMFONY_DEPRECATIONS_HELPER: disabled

- php-version: '7.4'
coverage: true
dependency-versions: 'highest'
tools: 'composer:v2'
env:
SYMFONY_DEPRECATIONS_HELPER: weak

- php-version: '8.0'
coverage: false
dependency-versions: 'highest'
tools: 'composer:v2'
env:
SYMFONY_DEPRECATIONS_HELPER: weak

- php-version: '8.1'
coverage: false
dependency-versions: 'highest'
tools: 'composer:v2'
env:
SYMFONY_DEPRECATIONS_HELPER: weak

- php-version: '8.2'
lint: true
coverage: false
dependency-versions: 'highest'
tools: 'composer:v2'
env:
SYMFONY_DEPRECATIONS_HELPER: disabled
SYMFONY_DEPRECATIONS_HELPER: weak

- php-version: '8.3'
lint: true
coverage: false
dependency-versions: 'highest'
tools: 'composer:v2'
env:
Expand Down
2 changes: 1 addition & 1 deletion Tests/Application/.env
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
APP_ENV=test
DATABASE_URL=mysql://[email protected]:3306/su_comment_test
DATABASE_URL="mysql://root:ChangeMe@127.0.0.1:3306/su_myapp?serverVersion=8.0.32&charset=utf8mb4"
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"type": "sulu-bundle",
"license": "MIT",
"require": {
"php": "^8.2 || ^8.3",
"php": "^7.3 || ^8.0",
"friendsofsymfony/rest-bundle": "^2.6 || ^3.0",
"sulu/sulu": "^2.5 || ^2.6@dev",
"sulu/sulu": "^2.4 || ^2.5@dev",
"symfony/config": "^5.4 || ^6.0 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
"symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0",
Expand All @@ -26,7 +26,7 @@
"phpstan/phpstan-doctrine": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-symfony": "^1.0",
"phpunit/phpunit": "^8.0 || ^9.0",
"phpunit/phpunit": "^9.6",
"symfony/browser-kit": "^5.4 || ^6.0 || ^7.0",
"symfony/dotenv": "^5.4 || ^6.0 || ^7.0",
"symfony/form": "^5.4 || ^6.0 || ^7.0",
Expand Down

0 comments on commit 80123f6

Please sign in to comment.