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

composer.json - github.com/YOURLS/YOURLS.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5b41af073641aadd10d9a5332c4ee60110e4fbdd (plain)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
    "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": ">=7.4",
        "ext-dom": "*",
        "ext-filter": "*",
        "ext-hash": "*",
        "ext-pcre": "*",
        "ext-pdo": "*",
        "ext-pdo_mysql": "*",
        "ozh/bookmarkletgen": "^1.2",
        "rmccue/requests" : "^2.0",
        "pomo/pomo" : "^1.4",
        "geoip2/geoip2" : "^2.10",
        "aura/sql": "^3.0",
        "jakeasmith/http_build_url": "^1.0",
        "symfony/polyfill-mbstring": "^1.15",
        "symfony/polyfill-intl-idn": "^1.17",
        "spatie/array-to-xml": "^2.14"
    },
    "require-dev": {
        "ext-ctype": "*"
    },
    "config": {
        "vendor-dir": "includes/vendor",
        "platform": {
            "php": "7.4.0"
        }
    },
    "autoload": {
        "psr-4": {
            "YOURLS\\": "includes/"
        }
    },
    "suggest": {
        "ext-bcmath": "May be needed to read GeoIP database (or ext-gmp)",
        "ext-curl": "Required for API usage",
        "ext-gmp": "May be needed to read GeoIP database (or ext-bcmath)",
        "ext-iconv": "For safer input handling",
        "ext-json": "For faster API performance",
        "ext-mbstring": "For best performance",
        "ext-openssl": "To fetch titles from HTTPS sites",
        "ext-posix": "May be needed on certain PHP versions",
        "ext-zlib": "For best performance"
    },
    "scripts": {
        "post-update-cmd": "bash ./includes/vendor/build-script/yourls-build.sh ./includes/vendor"
    }
}