forked from kafene/netscape-bookmark-parser
-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
45 lines (45 loc) · 1.26 KB
/
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
41
42
43
44
45
{
"name": "shaarli/netscape-bookmark-parser",
"description": "Generic Netscape bookmark parser",
"license": "MIT",
"homepage": "https://github.com/shaarli/netscape-bookmark-parser",
"authors": [
{
"name": "Kafene",
"email": "[email protected]",
"homepage": "https://github.com/kafene",
"role": "Developer"
},
{
"name": "VirtualTam",
"email": "[email protected]",
"homepage": "https://github.com/virtualtam",
"role": "Developer"
},
{
"name": "Matthias Morin",
"email": "[email protected]",
"homepage": "https://github.com/TangoMan75",
"role": "Developer"
}
],
"keywords": ["bookmark", "link", "netscape", "parse", "encoder", "decoder"],
"autoload": {
"psr-4": {
"Shaarli\\NetscapeBookmarkParser\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Shaarli\\NetscapeBookmarkParser\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.1",
"psr/log": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
"squizlabs/php_codesniffer": "^3.5"
}
}