Skip to content

Commit

Permalink
chore: Update PHP extensions in CI workflow
Browse files Browse the repository at this point in the history
This commit updates the PHP extensions in the continuous integration workflow. The `pdo_mysql` extension is replaced with `pdo` to align with the project's requirements. This change ensures compatibility with the latest version of PHP (8.2) and maintains the necessary extensions for the project.

Closes #123
  • Loading branch information
teetangh committed Jul 12, 2024
1 parent c2fa876 commit 05cf690
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
extensions: mbstring, json, pdo_mysql, curl
extensions: mbstring, json, pdo, curl
ini-values: post_max_size=256M, upload_max_filesize=256M, memory_limit=2G
coverage: none

Expand Down

0 comments on commit 05cf690

Please sign in to comment.