diff options
Diffstat (limited to 'vendor/symfony/polyfill-mbstring/composer.json')
-rw-r--r-- | vendor/symfony/polyfill-mbstring/composer.json | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/vendor/symfony/polyfill-mbstring/composer.json b/vendor/symfony/polyfill-mbstring/composer.json new file mode 100644 index 0000000..bd99d4b --- /dev/null +++ b/vendor/symfony/polyfill-mbstring/composer.json | |||
@@ -0,0 +1,38 @@ | |||
1 | { | ||
2 | "name": "symfony/polyfill-mbstring", | ||
3 | "type": "library", | ||
4 | "description": "Symfony polyfill for the Mbstring extension", | ||
5 | "keywords": ["polyfill", "shim", "compatibility", "portable", "mbstring"], | ||
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": ">=7.1" | ||
20 | }, | ||
21 | "provide": { | ||
22 | "ext-mbstring": "*" | ||
23 | }, | ||
24 | "autoload": { | ||
25 | "psr-4": { "Symfony\\Polyfill\\Mbstring\\": "" }, | ||
26 | "files": [ "bootstrap.php" ] | ||
27 | }, | ||
28 | "suggest": { | ||
29 | "ext-mbstring": "For best performance" | ||
30 | }, | ||
31 | "minimum-stability": "dev", | ||
32 | "extra": { | ||
33 | "thanks": { | ||
34 | "name": "symfony/polyfill", | ||
35 | "url": "https://github.com/symfony/polyfill" | ||
36 | } | ||
37 | } | ||
38 | } | ||