diff options
| author | s1n <[email protected]> | 2020-03-28 10:36:41 -0700 |
|---|---|---|
| committer | s1n <[email protected]> | 2020-03-28 10:36:41 -0700 |
| commit | 25b7d2aab61ae6421398d3abae5da6ffe590333d (patch) | |
| tree | 611985ec78bb2d94099c9fd5dd687f5c9cee6f3e /composer.json | |
| parent | Initial commit (diff) | |
| download | crack.cf-backup-25b7d2aab61ae6421398d3abae5da6ffe590333d.tar.xz crack.cf-backup-25b7d2aab61ae6421398d3abae5da6ffe590333d.zip | |
Diffstat (limited to 'composer.json')
| -rw-r--r-- | composer.json | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..d454ca7 --- /dev/null +++ b/composer.json @@ -0,0 +1,45 @@ +{ + "name": "yourls/yourls", + "description": "Your Own URL Shortener", + "type": "project", + "keywords": [ + "shortener", + "url shortener", + "short url", + "url", + "bitly" + ], + "homepage": "https://yourls.org", + "license": "MIT", + "support": { + "issues": "https://github.com/YOURLS/YOURLS/issues", + "source": "https://github.com/YOURLS/YOURLS" + }, + "require": { + "php": ">=5.6", + "ext-pdo": "*", + "ozh/bookmarkletgen": "1.2", + "ozh/phpass": "1.2.0", + "rmccue/requests" : "1.7", + "pomo/pomo" : "1.4.1", + "geoip2/geoip2" : "2.9.0", + "aura/sql": "~2.", + "jakeasmith/http_build_url": "1.0.1", + "symfony/polyfill-mbstring": "1.10.0" + }, + "config": { + "vendor-dir": "includes/vendor" + }, + "autoload": { + "psr-4": { + "YOURLS\\": "includes/" + } + }, + "suggest": { + "ext-mbstring": "For best performance", + "ext-curl": "Required for API usage" + }, + "scripts": { + "post-update-cmd": "bash ./includes/vendor/build-script/yourls-build.sh ./includes/vendor" + } +} |