Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/YOURLS/YOURLS.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorozh <ozh@ozh.org>2017-09-08 01:42:51 +0300
committerozh <ozh@ozh.org>2017-09-08 01:42:51 +0300
commit373e53eeaa32849fb96c7676e60437cb82786a62 (patch)
treee5706c7443965c561bb8c31672ee6aeb595e4c92 /composer.json
parenta2acd651f013b8cc808465a069c58f97f812c845 (diff)
Move mbstring compat stuff out into vendor
Let's trust more symfony than our half baked 15 lines function.
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json8
1 files changed, 7 insertions, 1 deletions
diff --git a/composer.json b/composer.json
index 661c0724..8c555139 100644
--- a/composer.json
+++ b/composer.json
@@ -13,12 +13,18 @@
"pomo/pomo" : "1.3.0",
"geoip2/geoip2" : "2.5.0",
"aura/sql": "~2.",
- "jakeasmith/http_build_url": "1.0.1"
+ "jakeasmith/http_build_url": "1.0.1",
+ "symfony/polyfill-mbstring" : "1.5.0"
},
"config": {
"vendor-dir": "includes/vendor"
},
"autoload": {
"psr-4": {"YOURLS\\": "includes/YOURLS"}
+ },
+ "suggest": {
+ "ext-mbstring": "For best performance",
+ "ext-curl": "For best performance",
+ "ext-lulz": "For the lulz"
}
}