summaryrefslogtreecommitdiff
path: root/vendor/symfony/string/composer.json
diff options
context:
space:
mode:
authorpolo <ordipolo@gmx.fr>2024-08-13 23:45:21 +0200
committerpolo <ordipolo@gmx.fr>2024-08-13 23:45:21 +0200
commitbf6655a534a6775d30cafa67bd801276bda1d98d (patch)
treec6381e3f6c81c33eab72508f410b165ba05f7e9c /vendor/symfony/string/composer.json
parent94d67a4b51f8e62e7d518cce26a526ae1ec48278 (diff)
downloadAppliGestionPHP-bf6655a534a6775d30cafa67bd801276bda1d98d.zip
VERSION 0.2 doctrine ORM et entités
Diffstat (limited to 'vendor/symfony/string/composer.json')
-rw-r--r--vendor/symfony/string/composer.json44
1 files changed, 44 insertions, 0 deletions
diff --git a/vendor/symfony/string/composer.json b/vendor/symfony/string/composer.json
new file mode 100644
index 0000000..10d0ee6
--- /dev/null
+++ b/vendor/symfony/string/composer.json
@@ -0,0 +1,44 @@
1{
2 "name": "symfony/string",
3 "type": "library",
4 "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
5 "keywords": ["string", "utf8", "utf-8", "grapheme", "i18n", "unicode"],
6 "homepage": "https://symfony.com",
7 "license": "MIT",
8 "authors": [
9 {
10 "name": "Nicolas Grekas",
11 "email": "p@tchwork.com"
12 },
13 {
14 "name": "Symfony Community",
15 "homepage": "https://symfony.com/contributors"
16 }
17 ],
18 "require": {
19 "php": ">=8.2",
20 "symfony/polyfill-ctype": "~1.8",
21 "symfony/polyfill-intl-grapheme": "~1.0",
22 "symfony/polyfill-intl-normalizer": "~1.0",
23 "symfony/polyfill-mbstring": "~1.0"
24 },
25 "require-dev": {
26 "symfony/error-handler": "^6.4|^7.0",
27 "symfony/emoji": "^7.1",
28 "symfony/http-client": "^6.4|^7.0",
29 "symfony/intl": "^6.4|^7.0",
30 "symfony/translation-contracts": "^2.5|^3.0",
31 "symfony/var-exporter": "^6.4|^7.0"
32 },
33 "conflict": {
34 "symfony/translation-contracts": "<2.5"
35 },
36 "autoload": {
37 "psr-4": { "Symfony\\Component\\String\\": "" },
38 "files": [ "Resources/functions.php" ],
39 "exclude-from-classmap": [
40 "/Tests/"
41 ]
42 },
43 "minimum-stability": "dev"
44}