Skip to content

Commit

Permalink
Update PHP deps. PHP 8.3 (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
SmetDenis committed Jan 27, 2024
1 parent 0c29685 commit 4a70dd0
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
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 @@ -83,7 +83,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 @@ -117,7 +117,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
12 changes: 6 additions & 6 deletions composer.json
Expand Up @@ -30,20 +30,20 @@
"ext-filter" : "*",
"ext-mbstring" : "*",

"phpunit/phpunit" : "^9.6.9",
"phpunit/phpunit" : "^9.6.16",
"ulrichsg/getopt-php" : ">=4.0.3",
"jbzoo/markdown" : "^7.0"
},

"require-dev" : {
"jbzoo/toolbox-dev" : "^7.0",
"jbzoo/codestyle" : "^7.0",
"jbzoo/codestyle" : "^7.1",
"jbzoo/http-client" : "^7.0",
"jbzoo/data" : "^7.0",
"jbzoo/utils" : "^7.0",
"jbzoo/data" : "^7.1",
"jbzoo/utils" : "^7.1",

"guzzlehttp/guzzle" : ">=7.5.0",
"symfony/process" : ">=6.2.8"
"guzzlehttp/guzzle" : ">=7.8.1",
"symfony/process" : ">=6.4.2"
},

"autoload" : {
Expand Down
2 changes: 1 addition & 1 deletion src/fake-index.php
Expand Up @@ -67,7 +67,7 @@
}

// Parse additional options
$cliOptions = new Getopt([
$cliOptions = new GetOpt([
[null, 'index', GetOpt::OPTIONAL_ARGUMENT],
[null, 'cov-src', GetOpt::OPTIONAL_ARGUMENT],
[null, 'cov-xml', GetOpt::OPTIONAL_ARGUMENT],
Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/includes/cov-catcher-exception.php
Expand Up @@ -21,7 +21,7 @@
*/
function showError(): void
{
throw new \RuntimeException('Some exception');
throw new RuntimeException('Some exception');
}

echo 'Some text message';
Expand Down

0 comments on commit 4a70dd0

Please sign in to comment.