Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump dependencies #66

Merged
merged 3 commits into from
Dec 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/behat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ jobs:
strategy:
fail-fast: false
matrix:
php-versions: ['7.4', '8.0' , '8.1', '8.2']
php-versions: ['8.0' , '8.1', '8.2', '8.3']

name: php${{ matrix.php-versions }}

steps:
- name: Checkout app
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up php ${{ matrix.php-versions }}
uses: shivammathur/setup-php@v2
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@ jobs:
# do not stop on another job's failure
fail-fast: false
matrix:
php-versions: ['7.4', '8.0' , '8.1']
php-versions: ['8.0' , '8.1', '8.2', '8.3']
include:
- php-versions: '8.2'
- php-versions: '8.3'
PHP_CS_FIXER_IGNORE_ENV: 1

name: php-cs check php${{ matrix.php-versions }}

steps:
- name: Checkout
uses: actions/checkout@master
uses: actions/checkout@v4

- name: Set up php
uses: shivammathur/setup-php@master
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
coverage: none
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/psalm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ jobs:
# do not stop on another job's failure
fail-fast: false
matrix:
php-versions: ['7.4', '8.0' , '8.1', '8.2']
php-versions: ['8.0' , '8.1', '8.2', '8.3']

name: Psalm check

steps:
- name: Checkout
uses: actions/checkout@master
uses: actions/checkout@v4

- name: Set up php
uses: shivammathur/setup-php@master
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
coverage: none
Expand Down
1,023 changes: 509 additions & 514 deletions composer.lock

Large diffs are not rendered by default.

12 changes: 7 additions & 5 deletions tests/psalm-baseline.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<files psalm-version="5.4.0@62db5d4f6a7ae0a20f7cc5a4952d730272fc0863">
<files psalm-version="5.17.0@c620f6e80d0abfca532b00bda366062aaedf6e5d">
<file src="src/RunServerListener.php">
<ForbiddenCode occurrences="1">
<ForbiddenCode>
<code>shell_exec($cmd)</code>
</ForbiddenCode>
<PossiblyNullArgument occurrences="1">
<code>shell_exec($cmd)</code>
</PossiblyNullArgument>
</file>
<file src="src/Server.php">
<UndefinedInterfaceMethod>
<code>scalarNode</code>
</UndefinedInterfaceMethod>
</file>
</files>
Loading