forked from migratetoflarum/old-passwords
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
59 lines (59 loc) · 1.54 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "esotericsoftware/old-passwords",
"description": "Re-hash passwords from an old platform on the fly",
"keywords": [
"extension",
"flarum",
"migration",
"passwords"
],
"type": "flarum-extension",
"license": "MIT",
"authors": [
{
"name": "Clark Winkelmann",
"email": "[email protected]",
"homepage": "https://clarkwinkelmann.com/"
}
],
"support": {
"issues": "https://github.com/migratetoflarum/old-passwords/issues",
"source": "https://github.com/migratetoflarum/old-passwords",
"forum": "https://discuss.flarum.org/d/8631"
},
"suggest": {
"hautelook/phpass": "If you need to check against phpass hashes"
},
"require": {
"flarum/core": "^1.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"hautelook/phpass": "^1.1"
},
"extra": {
"flarum-extension": {
"title": "Old Passwords",
"category": "feature",
"icon": {
"name": "fas fa-key",
"backgroundColor": "#e7672e",
"color": "#fafafa"
}
},
"flagrow": {
"discuss": "https://discuss.flarum.org/d/8631"
}
},
"autoload": {
"psr-4": {
"MigrateToFlarum\\OldPasswords\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MigrateToFlarum\\OldPasswords\\Tests\\": "tests/"
}
}
}