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