Skip to content

Commit 26ce5a2

Browse files
[String] a new component for object-oriented strings management with an abstract unit system
1 parent 3f911bb commit 26ce5a2

17 files changed

+2378
-1
lines changed

composer.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,10 @@
2727
"psr/log": "~1.0",
2828
"symfony/contracts": "^1.1.7|^2",
2929
"symfony/polyfill-ctype": "~1.8",
30+
"symfony/polyfill-intl-grapheme": "~1.0",
3031
"symfony/polyfill-intl-icu": "~1.0",
3132
"symfony/polyfill-intl-idn": "^1.10",
33+
"symfony/polyfill-intl-normalizer": "~1.0",
3234
"symfony/polyfill-mbstring": "~1.0",
3335
"symfony/polyfill-php73": "^1.11"
3436
},
@@ -82,6 +84,7 @@
8284
"symfony/sendgrid-mailer": "self.version",
8385
"symfony/serializer": "self.version",
8486
"symfony/stopwatch": "self.version",
87+
"symfony/string": "self.version",
8588
"symfony/templating": "self.version",
8689
"symfony/translation": "self.version",
8790
"symfony/twig-bridge": "self.version",
@@ -144,7 +147,10 @@
144147
]
145148
},
146149
"autoload-dev": {
147-
"files": [ "src/Symfony/Component/VarDumper/Resources/functions/dump.php" ]
150+
"files": [
151+
"src/Symfony/Component/String/Resources/functions.php",
152+
"src/Symfony/Component/VarDumper/Resources/functions/dump.php"
153+
]
148154
},
149155
"repositories": [
150156
{
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/Tests export-ignore
2+
/phpunit.xml.dist export-ignore
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
composer.lock
2+
phpunit.xml
3+
vendor/

0 commit comments

Comments
 (0)