Skip to content

Commit

Permalink
Merge pull request #239 from sprain/symfony-7
Browse files Browse the repository at this point in the history
Add support for Symfony 7 and PHP 8.3
  • Loading branch information
sprain committed Nov 29, 2023
2 parents eb68c11 + b8fcda3 commit 863f6b0
Show file tree
Hide file tree
Showing 5 changed files with 252 additions and 252 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

strategy:
matrix:
php: ['8.0', '8.1', '8.2']
php: ['8.0', '8.1', '8.2', '8.3']
stability: ['prefer-lowest', 'prefer-stable']

name: PHP Tests ${{ matrix.php }} - ${{ matrix.stability }}
Expand Down Expand Up @@ -47,9 +47,9 @@ jobs:
- name: Execute tests in hardened environment
run: php -d allow_url_fopen=0 -d memory_limit=256M -d register_globals=0 vendor/bin/phpunit --verbose

run_code_checks:
code_checks:
runs-on: ubuntu-20.04
name: PHP Code-Checks
name: Static code analysis

steps:
- name: Checkout code
Expand All @@ -74,9 +74,6 @@ jobs:
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-

- name: Install dependencies
run: composer install --prefer-dist

- name: Install dependencies
run: composer install --prefer-dist --no-progress

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
"type": "library",
"license": "MIT",
"require": {
"php": "^8.0.0|^8.1.0|^8.2.0",
"php": "~8.0.0|~8.1.0|~8.2.0|~8.3.0",
"ext-dom": "*",
"ext-bcmath": "*",
"ext-iconv": "*",
"symfony/validator": "^4.4|^5.0|^6.0",
"symfony/intl": "^4.4|^5.0|^6.0",
"symfony/validator": "^4.4|^5.0|^6.0|^7.0",
"symfony/intl": "^4.4|^5.0|^6.0|^7.0",
"kmukku/php-iso11649": "^1.5",
"endroid/qr-code": "^4.4.4|^5.0",
"symfony/polyfill-intl-icu": "^1.23"
Expand Down
Loading

0 comments on commit 863f6b0

Please sign in to comment.