aboutsummaryrefslogtreecommitdiff
path: root/composer.json
blob: d454ca779c0a699188be9526f4e9c634fbb0b737 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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"
    }
}