diff options
author | friendica <info@friendica.com> | 2012-07-30 18:51:44 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-07-30 18:51:44 -0700 |
commit | 02cc436ec7cf0cfca5fc9b5166cc537bbee53671 (patch) | |
tree | d7e5eea4e22ed1befeab5706a30ce1e1ac064972 /library/urlify/composer.json | |
parent | 194c52aee590a209cc38ee8fb322ff7dc4a9143d (diff) | |
download | volse-hubzilla-02cc436ec7cf0cfca5fc9b5166cc537bbee53671.tar.gz volse-hubzilla-02cc436ec7cf0cfca5fc9b5166cc537bbee53671.tar.bz2 volse-hubzilla-02cc436ec7cf0cfca5fc9b5166cc537bbee53671.zip |
Added urlify to try and create webbie auto-suggestions out of whatever unicode stuff gets thrown in as a name. Currently this will only work for latin/european/cyrillic/russian, but possible to extend to ideographic forms.
Diffstat (limited to 'library/urlify/composer.json')
-rw-r--r-- | library/urlify/composer.json | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/library/urlify/composer.json b/library/urlify/composer.json new file mode 100644 index 000000000..2d95f6aa6 --- /dev/null +++ b/library/urlify/composer.json @@ -0,0 +1,21 @@ +{ + "name": "jbroadway/urlify", + "type": "library", + "description": "PHP port of URLify.js from the Django project. Transliterates non-ascii characters for use in URLs.", + "keywords": ["urlify","transliterate","translit","transliteration","url","encode","slug","link","iconv"], + "homepage": "https://github.com/jbroadway/urlify", + "license": "MIT", + "authors": [ + { + "name": "Johnny Broadway", + "email": "johnny@johnnybroadway.com", + "homepage": "http://www.johnnybroadway.com/" + } + ], + "require": { + "php": ">=5.3.0" + }, + "autoload": { + "psr-0": { "URLify": "" } + } +} |