Skip to content

Commit 0827219

Browse files
authored
Add "symfony/polyfill-mbstring" as requirement when needed (#2228)
1 parent e063510 commit 0827219

10 files changed

Lines changed: 16 additions & 7 deletions

File tree

composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
"symfony/event-dispatcher": "^6.4 || ^7.3 || ^8.0",
4646
"symfony/http-foundation": "^6.4 || ^7.3 || ^8.0",
4747
"symfony/http-kernel": "^6.4 || ^7.3 || ^8.0",
48+
"symfony/polyfill-mbstring": "^1.33",
4849
"symfony/string": "^6.4 || ^7.3 || ^8.0",
4950
"symfony/uid": "^6.4 || ^7.3 || ^8.0",
5051
"webmozart/glob": "^3.0 || ^4.0"

composer.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/adapter/etl-adapter-csv/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
],
1313
"require": {
1414
"php": "~8.3.0 || ~8.4.0 || ~8.5.0",
15-
"flow-php/etl": "self.version"
15+
"flow-php/etl": "self.version",
16+
"symfony/polyfill-mbstring": "^1.33"
1617
},
1718
"config": {
1819
"optimize-autoloader": true,

src/adapter/etl-adapter-xml/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
"ext-xml": "*",
1717
"ext-xmlreader": "*",
1818
"ext-xmlwriter": "*",
19-
"flow-php/etl": "self.version"
19+
"flow-php/etl": "self.version",
20+
"symfony/polyfill-mbstring": "^1.33"
2021
},
2122
"config": {
2223
"optimize-autoloader": true,

src/bridge/symfony/telemetry-bundle/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
"symfony/console": "^6.4 || ^7.3 || ^8.0",
2424
"symfony/dependency-injection": "^6.4 || ^7.3 || ^8.0",
2525
"symfony/http-client-contracts": "^3.0",
26-
"symfony/http-kernel": "^6.4 || ^7.3 || ^8.0"
26+
"symfony/http-kernel": "^6.4 || ^7.3 || ^8.0",
27+
"symfony/polyfill-mbstring": "^1.33"
2728
},
2829
"require-dev": {
2930
"doctrine/dbal": "^3.6 || ^4.0",

src/core/etl/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
},
2828
"require-dev": {
2929
"ramsey/uuid": "^4.5",
30+
"symfony/polyfill-mbstring": "^1.33",
3031
"symfony/uid": "^6.4 || ^7.3 || ^8.0"
3132
},
3233
"config": {

src/lib/filesystem/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
"php": "~8.3.0 || ~8.4.0 || ~8.5.0",
1818
"flow-php/telemetry": "self.version",
1919
"flow-php/types": "self.version",
20+
"symfony/polyfill-mbstring": "^1.33",
2021
"webmozart/glob": "^3.0 || ^4.0"
2122
},
2223
"config": {

src/lib/parquet/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
"composer-runtime-api": "^2.0",
1818
"flow-php/snappy": "self.version",
1919
"flow-php/filesystem": "self.version",
20-
"packaged/thrift": "^0.15.0"
20+
"packaged/thrift": "^0.15.0",
21+
"symfony/polyfill-mbstring": "^1.33"
2122
},
2223
"config": {
2324
"optimize-autoloader": true,

src/lib/telemetry/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"require": {
1212
"php": "~8.3.0 || ~8.4.0 || ~8.5.0",
1313
"composer-runtime-api": "^2.0",
14-
"psr/clock": "^1.0"
14+
"psr/clock": "^1.0",
15+
"symfony/polyfill-mbstring": "^1.33"
1516
},
1617
"config": {
1718
"optimize-autoloader": true,

src/lib/types/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
"types"
88
],
99
"require": {
10-
"php": "~8.3.0 || ~8.4.0 || ~8.5.0"
10+
"php": "~8.3.0 || ~8.4.0 || ~8.5.0",
11+
"symfony/polyfill-mbstring": "^1.33"
1112
},
1213
"config": {
1314
"optimize-autoloader": true,

0 commit comments

Comments
 (0)