]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - composer.json
Merge pull request #1584 from ArthurHoaro/feature/async-thumbnail-retrieval
[github/shaarli/Shaarli.git] / composer.json
CommitLineData
00f98bda
V
1{
2 "name": "shaarli/shaarli",
8945c76b
V
3 "description": "The personal, minimalist, super-fast, database-free bookmarking service",
4 "type": "project",
00f98bda 5 "license": "MIT",
8945c76b 6 "homepage": "https://github.com/shaarli/Shaarli",
00f98bda 7 "support": {
8945c76b 8 "issues": "https://github.com/shaarli/Shaarli/issues",
cc8f572b 9 "wiki": "https://shaarli.readthedocs.io"
8945c76b
V
10 },
11 "keywords": ["bookmark", "link", "share", "web"],
89118630 12 "config": {
8fabcd02 13 "sort-packages": true,
89118630 14 "platform": {
df408797 15 "php": "7.1.29"
89118630
A
16 }
17 },
8945c76b 18 "require": {
df408797 19 "php": ">=7.1",
1a55fc8d 20 "ext-json": "*",
a0c4dbd9 21 "ext-zlib": "*",
def39d0d 22 "arthurhoaro/web-thumbnailer": "^2.0",
8fabcd02
A
23 "erusev/parsedown": "^1.6",
24 "erusev/parsedown-extra": "^0.8.1",
25 "gettext/gettext": "^4.4",
fd1ddad9 26 "malkusch/lock": "^2.1",
12266213 27 "pubsubhubbub/publisher": "dev-master",
8fabcd02
A
28 "shaarli/netscape-bookmark-parser": "^2.1",
29 "slim/slim": "^3.0"
00f98bda 30 },
00f98bda 31 "require-dev": {
8f4e9624 32 "roave/security-advisories": "dev-master",
a5a9cf23
A
33 "squizlabs/php_codesniffer": "3.*",
34 "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
18e67967 35 },
92c6439d 36 "suggest": {
1a55fc8d
V
37 "ext-curl": "Allows fetching web pages and thumbnails in a more robust way",
38 "ext-gd": "Required for thumbnail generation",
39 "ext-gettext": "Enables faster translation system in gettext mode",
40 "ext-intl": "Provides localized text sorting",
41 "ext-mbstring": "Provides multibyte (Unicode) string support"
92c6439d 42 },
18e67967
A
43 "autoload": {
44 "psr-4": {
7a9daac5 45 "Shaarli\\": "application",
18e67967
A
46 "Shaarli\\Api\\": "application/api/",
47 "Shaarli\\Api\\Controllers\\": "application/api/controllers",
3c66e564 48 "Shaarli\\Api\\Exceptions\\": "application/api/exceptions",
f24896b2 49 "Shaarli\\Bookmark\\": "application/bookmark",
6696729b 50 "Shaarli\\Bookmark\\Exception\\": "application/bookmark/exception",
e6cd773f 51 "Shaarli\\Config\\": "application/config/",
fab87c26 52 "Shaarli\\Config\\Exception\\": "application/config/exception",
6c50a6cc 53 "Shaarli\\Container\\": "application/container",
f3d2f257 54 "Shaarli\\Exceptions\\": "application/exceptions",
dfc650aa 55 "Shaarli\\Feed\\": "application/feed",
336a28fa 56 "Shaarli\\Formatter\\": "application/formatter",
6c50a6cc 57 "Shaarli\\Front\\": "application/front",
2899ebb5
A
58 "Shaarli\\Front\\Controller\\Admin\\": "application/front/controller/admin",
59 "Shaarli\\Front\\Controller\\Visitor\\": "application/front/controller/visitor",
6c50a6cc 60 "Shaarli\\Front\\Exception\\": "application/front/exceptions",
00af48d9 61 "Shaarli\\Http\\": "application/http",
336a28fa 62 "Shaarli\\Legacy\\": "application/legacy",
349b0144 63 "Shaarli\\Netscape\\": "application/netscape",
e1850388
V
64 "Shaarli\\Plugin\\": "application/plugin",
65 "Shaarli\\Plugin\\Exception\\": "application/plugin/exception",
95854417 66 "Shaarli\\Plugin\\Wallabag\\": "plugins/wallabag",
8c0f19c7 67 "Shaarli\\Render\\": "application/render",
bcf056c9
V
68 "Shaarli\\Security\\": "application/security",
69 "Shaarli\\Updater\\": "application/updater",
70 "Shaarli\\Updater\\Exception\\": "application/updater/exception"
18e67967 71 }
00f98bda
V
72 }
73}