]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - composer.json
Merge pull request #1698 from ArthurHoaro/feature/plugins-search-filter
[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",
ca5e98da 26 "katzgrau/klogger": "^1.2",
fd1ddad9 27 "malkusch/lock": "^2.1",
12266213 28 "pubsubhubbub/publisher": "dev-master",
67339338 29 "shaarli/netscape-bookmark-parser": "^3.0",
8fabcd02 30 "slim/slim": "^3.0"
00f98bda 31 },
00f98bda 32 "require-dev": {
8f4e9624 33 "roave/security-advisories": "dev-master",
a5a9cf23
A
34 "squizlabs/php_codesniffer": "3.*",
35 "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
18e67967 36 },
92c6439d 37 "suggest": {
1a55fc8d
V
38 "ext-curl": "Allows fetching web pages and thumbnails in a more robust way",
39 "ext-gd": "Required for thumbnail generation",
40 "ext-gettext": "Enables faster translation system in gettext mode",
41 "ext-intl": "Provides localized text sorting",
42 "ext-mbstring": "Provides multibyte (Unicode) string support"
92c6439d 43 },
18e67967
A
44 "autoload": {
45 "psr-4": {
7a9daac5 46 "Shaarli\\": "application",
18e67967
A
47 "Shaarli\\Api\\": "application/api/",
48 "Shaarli\\Api\\Controllers\\": "application/api/controllers",
3c66e564 49 "Shaarli\\Api\\Exceptions\\": "application/api/exceptions",
f24896b2 50 "Shaarli\\Bookmark\\": "application/bookmark",
6696729b 51 "Shaarli\\Bookmark\\Exception\\": "application/bookmark/exception",
e6cd773f 52 "Shaarli\\Config\\": "application/config/",
fab87c26 53 "Shaarli\\Config\\Exception\\": "application/config/exception",
6c50a6cc 54 "Shaarli\\Container\\": "application/container",
f3d2f257 55 "Shaarli\\Exceptions\\": "application/exceptions",
dfc650aa 56 "Shaarli\\Feed\\": "application/feed",
336a28fa 57 "Shaarli\\Formatter\\": "application/formatter",
6c50a6cc 58 "Shaarli\\Front\\": "application/front",
2899ebb5
A
59 "Shaarli\\Front\\Controller\\Admin\\": "application/front/controller/admin",
60 "Shaarli\\Front\\Controller\\Visitor\\": "application/front/controller/visitor",
6c50a6cc 61 "Shaarli\\Front\\Exception\\": "application/front/exceptions",
c2cd15da 62 "Shaarli\\Helper\\": "application/helper",
00af48d9 63 "Shaarli\\Http\\": "application/http",
336a28fa 64 "Shaarli\\Legacy\\": "application/legacy",
349b0144 65 "Shaarli\\Netscape\\": "application/netscape",
e1850388
V
66 "Shaarli\\Plugin\\": "application/plugin",
67 "Shaarli\\Plugin\\Exception\\": "application/plugin/exception",
95854417 68 "Shaarli\\Plugin\\Wallabag\\": "plugins/wallabag",
8c0f19c7 69 "Shaarli\\Render\\": "application/render",
bcf056c9
V
70 "Shaarli\\Security\\": "application/security",
71 "Shaarli\\Updater\\": "application/updater",
72 "Shaarli\\Updater\\Exception\\": "application/updater/exception"
18e67967 73 }
00f98bda
V
74 }
75}