[go: nahoru, domu]

Skip to content

Commit

Permalink
Merge pull request #452 from stof/drop_old_versions
Browse files Browse the repository at this point in the history
Drop support for PHP 7.& and Symfony 4
  • Loading branch information
stof committed Jul 7, 2023
2 parents f3446f6 + cd24976 commit 8452ab1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ]
php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ]
name_suffix: ['']
stability: ['stable']
composer_flags: ['']
include:
- php: '7.1'
- php: '7.2'
name_suffix: ' (lowest deps)'
stability: 'stable'
composer_flags: '--prefer-lowest'
- php: '8.0'
- php: '8.2'
name_suffix: ' (dev deps)'
stability: 'dev'
composer_flags: ''
Expand Down
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@
}
],
"require": {
"php": "^7.1.3 || ^8.0",
"symfony/config": "^4.4 || ^5.2 || ^6.0",
"symfony/dependency-injection": "^4.4 || ^5.2 || ^6.0",
"symfony/event-dispatcher": "^4.4 || ^5.2 || ^6.0",
"symfony/http-kernel": "^4.4 || ^5.2 || ^6.0",
"php": "^7.2.5 || ^8.0",
"symfony/config": "^5.4 || ^6.0",
"symfony/dependency-injection": "^5.4 || ^6.0",
"symfony/event-dispatcher": "^5.4 || ^6.0",
"symfony/http-kernel": "^5.4 || ^6.0",
"gedmo/doctrine-extensions": "^2.3.12 || ^3.0.0"
},
"require-dev": {
"symfony/mime": "^4.4 || ^5.2 || ^6.0",
"symfony/phpunit-bridge": "^v5.2.4 || ^6.0",
"symfony/security-core": "^4.4 || ^5.2 || ^6.0"
"symfony/mime": "^5.4 || ^6.0",
"symfony/phpunit-bridge": "^v5.4 || ^6.0",
"symfony/security-core": "^5.4 || ^6.0"
},
"suggest": {
"doctrine/doctrine-bundle": "to use the ORM extensions",
Expand Down

0 comments on commit 8452ab1

Please sign in to comment.