Skip to content

Commit

Permalink
Add missing dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdijen committed Mar 13, 2023
1 parent bab9a50 commit 789c389
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/php.yml
Expand Up @@ -47,7 +47,7 @@ jobs:
php-version: '8.2'
tools: composer, phpcs, psalm, composer-require-checker, composer-unused
# optional performance gain for psalm: opcache
extensions: ctype, date, opcache, pcre, spl
extensions: ctype, date, filter, opcache, pcre, spl
coverage: none

- name: Setup problem matchers for PHP
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
with:
# Should be the lowest supported version
php-version: '8.0'
extensions: ctype, date, pcre, spl
extensions: ctype, date, filter, pcre, spl
tools: composer
coverage: none

Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: ctype, date, pcre, spl
extensions: ctype, date, filter, pcre, spl
tools: composer, phpunit, phpunit-bridge
ini-values: error_reporting=E_ALL
coverage: pcov
Expand Down Expand Up @@ -220,7 +220,7 @@ jobs:
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: ctype, date, pcre, spl
extensions: ctype, date, filter, pcre, spl
tools: composer, phpunit, phpunit-bridge
ini-values: error_reporting=E_ALL
coverage: none
Expand Down
1 change: 1 addition & 0 deletions composer.json
Expand Up @@ -15,6 +15,7 @@
"require": {
"php": "^8.0",
"ext-date": "*",
"ext-filter": "*",
"ext-pcre": "*",
"ext-spl": "*",

Expand Down

0 comments on commit 789c389

Please sign in to comment.