aboutsummaryrefslogtreecommitdiffhomepage
path: root/composer.json
blob: 109d5d7b17f31a8e58f6200c86939aef5acf24e7 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
    "name": "shaarli/shaarli",
    "description": "The personal, minimalist, super-fast, database-free bookmarking service",
    "type": "project",
    "license": "MIT",
    "homepage": "https://github.com/shaarli/Shaarli",
    "support": {
        "issues": "https://github.com/shaarli/Shaarli/issues",
        "wiki": "https://shaarli.readthedocs.io"
    },
    "keywords": ["bookmark", "link", "share", "web"],
    "config": {
        "platform": {
            "php": "7.1.29"
        }
    },
    "require": {
        "php": ">=7.1",
        "ext-json": "*",
        "ext-zlib": "*",
        "shaarli/netscape-bookmark-parser": "^2.1",
        "erusev/parsedown": "^1.6",
        "slim/slim": "^3.0",
        "arthurhoaro/web-thumbnailer": "^1.1",
        "pubsubhubbub/publisher": "dev-master",
        "gettext/gettext": "^4.4"
    },
    "require-dev": {
        "roave/security-advisories": "dev-master",
        "phpunit/phpcov": "*",
        "phpunit/phpunit": "^5.0",
        "squizlabs/php_codesniffer": "2.*"
    },
    "suggest": {
        "ext-curl": "Allows fetching web pages and thumbnails in a more robust way",
        "ext-gd": "Required for thumbnail generation",
        "ext-gettext": "Enables faster translation system in gettext mode",
        "ext-intl": "Provides localized text sorting",
        "ext-mbstring": "Provides multibyte (Unicode) string support"
    },
    "autoload": {
        "psr-4": {
            "Shaarli\\": "application",
            "Shaarli\\Api\\": "application/api/",
            "Shaarli\\Api\\Controllers\\": "application/api/controllers",
            "Shaarli\\Api\\Exceptions\\": "application/api/exceptions",
            "Shaarli\\Bookmark\\": "application/bookmark",
            "Shaarli\\Bookmark\\Exception\\": "application/bookmark/exception",
            "Shaarli\\Config\\": "application/config/",
            "Shaarli\\Config\\Exception\\": "application/config/exception",
            "Shaarli\\Exceptions\\": "application/exceptions",
            "Shaarli\\Feed\\": "application/feed",
            "Shaarli\\Http\\": "application/http",
            "Shaarli\\Netscape\\": "application/netscape",
            "Shaarli\\Plugin\\": "application/plugin",
            "Shaarli\\Plugin\\Exception\\": "application/plugin/exception",
            "Shaarli\\Plugin\\Wallabag\\": "plugins/wallabag",
            "Shaarli\\Render\\": "application/render",
            "Shaarli\\Security\\": "application/security",
            "Shaarli\\Updater\\": "application/updater",
            "Shaarli\\Updater\\Exception\\": "application/updater/exception"
        }
    }
}