Skip to content

Commit

Permalink
Merge pull request #87 from niels-nijens/remove-symfony-4-support
Browse files Browse the repository at this point in the history
Remove Symfony 4.4, 5.0, 5.1, 5.2 and 5.3 support
  • Loading branch information
niels-nijens committed Mar 28, 2024
2 parents d4745f9 + d0fd6cc commit 39253fd
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 45 deletions.
22 changes: 1 addition & 21 deletions .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
php-version: ['7.4', '8.0', '8.1', '8.2', '8.3']
symfony-version: ['4.4', '5.0', '5.1', '5.2', '5.3', '5.4', '6.0', '6.1', '6.2', '6.3', '6.4']
symfony-version: ['5.4', '6.0', '6.1', '6.2', '6.3', '6.4']
test-options: ['']
coverage: [false]
include:
Expand All @@ -31,8 +31,6 @@ jobs:
symfony-version: '6.3'
- php-version: '7.4'
symfony-version: '6.4'
- php-version: '8.0'
symfony-version: '5.0'
- php-version: '8.0'
symfony-version: '6.1'
- php-version: '8.0'
Expand All @@ -41,24 +39,6 @@ jobs:
symfony-version: '6.3'
- php-version: '8.0'
symfony-version: '6.4'
- php-version: '8.1'
symfony-version: '5.0'
- php-version: '8.1'
symfony-version: '5.1'
- php-version: '8.1'
symfony-version: '5.2'
- php-version: '8.2'
symfony-version: '5.0'
- php-version: '8.2'
symfony-version: '5.1'
- php-version: '8.2'
symfony-version: '5.2'
- php-version: '8.3'
symfony-version: '5.0'
- php-version: '8.3'
symfony-version: '5.1'
- php-version: '8.3'
symfony-version: '5.2'

steps:
- uses: actions/checkout@v4
Expand Down
32 changes: 16 additions & 16 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,32 +10,32 @@
}
],
"require": {
"php": "^7.2 || ^8.0",
"php": "^7.4 || ^8.0",
"ext-json": "*",
"justinrainbow/json-schema": "^5.2",
"league/uri": "^6.3",
"seld/jsonlint": "^1.7",
"symfony/config": "^4.4 || ^5.0 || ^6.0",
"symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
"symfony/config": "^5.4 || ^6.0",
"symfony/dependency-injection": "^5.4 || ^6.0",
"symfony/deprecation-contracts": "^2.5 || ^3.0",
"symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
"symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
"symfony/http-foundation": "^4.4 || ^5.0 || ^6.0",
"symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
"symfony/property-access": "^4.4 || ^5.0 || ^6.0",
"symfony/routing": "^4.4 || ^5.0 || ^6.0",
"symfony/serializer": "^4.4 || ^5.0 || ^6.0",
"symfony/yaml": "^4.4 || ^5.0 || ^6.0"
"symfony/event-dispatcher": "^5.4 || ^6.0",
"symfony/framework-bundle": "^5.4 || ^6.0",
"symfony/http-foundation": "^5.4 || ^6.0",
"symfony/http-kernel": "^5.4 || ^6.0",
"symfony/property-access": "^5.4 || ^6.0",
"symfony/routing": "^5.4 || ^6.0",
"symfony/serializer": "^5.4 || ^6.0",
"symfony/yaml": "^5.4 || ^6.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"masterminds/html5": "^2.7",
"monolog/monolog": "^1.27 || ^2.6 || ^3.0",
"phpunit/phpunit": "^9.3",
"symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
"symfony/phpunit-bridge": "^4.4 || ^5.0 || ^6.0",
"symfony/process": "^4.4 || ^5.0 || ^6.0",
"symfony/security-bundle": "^4.4 || ^5.0 || ^6.0"
"phpunit/phpunit": "^9.6",
"symfony/browser-kit": "^5.4 || ^6.0",
"symfony/phpunit-bridge": "^5.4 || ^6.0",
"symfony/process": "^5.4 || ^6.0",
"symfony/security-bundle": "^5.4 || ^6.0"
},
"autoload": {
"psr-4": {
Expand Down
16 changes: 8 additions & 8 deletions composer.lock

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

0 comments on commit 39253fd

Please sign in to comment.