Skip to content

Commit

Permalink
Add PHP 8.3 support and update dependencies in composer.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Denis Smet committed Jan 28, 2024
1 parent f494326 commit dafc383
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
JBZOO_COMPOSER_UPDATE_FLAGS: ${{ matrix.composer_flags }}
strategy:
matrix:
php-version: [ 8.1, 8.2 ]
php-version: [ 8.1, 8.2, 8.3 ]
coverage: [ xdebug, none ]
composer_flags: [ "--prefer-lowest", "" ]
steps:
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: [ 8.1, 8.2 ]
php-version: [ 8.1, 8.2, 8.3 ]
steps:
- name: Checkout code
uses: actions/checkout@v3
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: [ 8.1, 8.2 ]
php-version: [ 8.1, 8.2, 8.3 ]
steps:
- name: Checkout code
uses: actions/checkout@v3
Expand Down
18 changes: 9 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,20 +32,20 @@
},

"require-dev" : {
"jbzoo/toolbox-dev" : "^7.0",
"jbzoo/toolbox-dev" : "^7.1",
"jbzoo/utils" : "^7.1.1",
"symfony/yaml" : ">=4.4",
"symfony/yaml" : ">=6.4",

"symfony/polyfill-ctype" : ">=1.27.0",
"symfony/polyfill-mbstring" : ">=1.27.0",
"symfony/polyfill-php73" : ">=1.27.0",
"symfony/polyfill-php80" : ">=1.27.0",
"symfony/polyfill-php81" : ">=1.27.0"
"symfony/polyfill-ctype" : ">=1.28.0",
"symfony/polyfill-mbstring" : ">=1.28.0",
"symfony/polyfill-php73" : ">=1.28.0",
"symfony/polyfill-php80" : ">=1.28.0",
"symfony/polyfill-php81" : ">=1.28.0"
},

"suggest" : {
"symfony/yaml" : ">=4.4",
"jbzoo/utils" : ">=7.0"
"symfony/yaml" : ">=6.4",
"jbzoo/utils" : ">=7.1"
},

"autoload" : {
Expand Down

0 comments on commit dafc383

Please sign in to comment.