Skip to content

Commit

Permalink
fix: Require missing iconv and mbstring dependencies
Browse files Browse the repository at this point in the history
- `ext-mbstring` is required and to allow it to work as a PHAR the
  polyfill is added.
- `symfony/polyfill-mbstring` require `iconv` (see
  symfony/symfony#52207).
  • Loading branch information
theofidry committed Oct 20, 2023
1 parent 3831987 commit c96b80f
Show file tree
Hide file tree
Showing 2 changed files with 90 additions and 1 deletion.
4 changes: 4 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
],
"require": {
"php": "^8.1",
"ext-iconv": "*",
"ext-mbstring": "*",
"ext-phar": "*",
"ext-sodium": "*",
"composer-plugin-api": "^2.2",
Expand All @@ -40,6 +42,8 @@
"symfony/console": "^6.1.7",
"symfony/filesystem": "^6.1.5",
"symfony/finder": "^6.1.3",
"symfony/polyfill-iconv": "^1.28",
"symfony/polyfill-mbstring": "^1.28",
"symfony/process": "^6.1.3",
"symfony/var-dumper": "^6.1.6",
"webmozart/assert": "^1.11"
Expand Down
87 changes: 86 additions & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c96b80f

Please sign in to comment.