-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
40 lines (40 loc) · 1007 Bytes
/
composer.json
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
{
"name": "flus/flus",
"description": "Collect, organise, comment on and share links from around the Web.",
"type": "project",
"license": "AGPL-3.0",
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"App\\": "src/",
"SpiderBits\\": "lib/SpiderBits/src/"
},
"files": [
"src/utils/view_helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"tests\\": "tests/"
}
},
"require": {
"php": ">=8.2",
"ext-intl": "*",
"ext-gettext": "*",
"ext-pcntl": "*",
"ext-gd": "*",
"ext-pdo": "*",
"ext-pdo_pgsql": "*",
"flus/minz": "dev-main",
"erusev/parsedown": "^1.7"
},
"require-dev": {
"phpunit/phpunit": "^11.2",
"squizlabs/php_codesniffer": "^3.5",
"fakerphp/faker": "^1.17",
"phpstan/phpstan": "^1.10",
"rector/rector": "^1.2"
}
}