Skip to content

Commit

Permalink
Install intl, bcmath and mbstring dependencies in CI
Browse files Browse the repository at this point in the history
These are minor dependency upgrades that are well worth having, for
the reduced code complexity in our domain.
  • Loading branch information
Ocramius committed Feb 6, 2025
1 parent 82c3564 commit 2f87f49
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/coding-standard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
coverage: "pcov"
php-version: "${{ matrix.php-version }}"
ini-values: memory_limit=-1
extensions: mbstring, bcmath, intl, sodium

- name: Get Composer cache directory
id: composer-cache
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/infection.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ jobs:
coverage: "pcov"
php-version: "${{ matrix.php-version }}"
ini-values: memory_limit=-1, zend.assertions=1
extensions: mbstring, bcmath, intl, sodium

- name: Get Composer cache directory
id: composer-cache
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/phar-creation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
coverage: "none"
php-version: "8.2"
ini-values: memory_limit=-1, phar.readonly=0
extensions: mbstring, bcmath, intl, sodium

- name: "Import GPG Key"
run: echo "$PRIVATE_KEY" | gpg --import
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
coverage: "pcov"
php-version: "${{ matrix.php-version }}"
ini-values: memory_limit=-1
extensions: mbstring, bcmath, intl, sodium

- name: Get Composer cache directory
id: composer-cache
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ jobs:
coverage: "pcov"
php-version: "${{ matrix.php-version }}"
ini-values: memory_limit=-1
extensions: mbstring, bcmath, intl, sodium

- name: Get Composer cache directory
id: composer-cache
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/psalm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
coverage: "pcov"
php-version: "${{ matrix.php-version }}"
ini-values: memory_limit=-1
extensions: mbstring, bcmath, intl, sodium

- name: Get Composer cache directory
id: composer-cache
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/require-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
coverage: "pcov"
php-version: "${{ matrix.php-version }}"
ini-values: memory_limit=-1
extensions: mbstring, bcmath, intl, sodium

- name: Get Composer cache directory
id: composer-cache
Expand Down

0 comments on commit 2f87f49

Please sign in to comment.