forked from nilsteampassnet/TeamPass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·149 lines (149 loc) · 4.61 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{
"name": "nilsteampassnet/teampass",
"description": "teampass",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"apcu-autoloader": true,
"discard-changes": true,
"platform": {
"php": "8.1"
}
},
"version": "3.1.1",
"keywords": ["passwords", "manager", "collaborative", "vault", "security"],
"homepage": "https://www.teampass.net",
"license": "GPL-3.0-only",
"authors": [
{
"name": "Nils Laumaillé",
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/nilsteampassnet/TeamPass/issues",
"source": "https://github.com/nilsteampassnet/TeamPass",
"wiki": "https://www.teampass.net",
"docs": "https://teampass.readthedocs.io/en/latest/",
"forum": "https://www.reddit.com/r/TeamPass/"
},
"repositories": [
{
"type" : "composer",
"url" : "https://wpackagist.org"
},
{
"type": "path",
"url": "includes/libraries/teampassclasses/nestedtree",
"options": {
"symlink": false
}
},
{
"type": "path",
"url": "includes/libraries/ezimuel/phpsecuresession",
"options": {
"symlink": false
}
},
{
"type": "path",
"url": "includes/libraries/teampassclasses/performchecks",
"options": {
"symlink": false
}
},
{
"type": "path",
"url": "includes/libraries/teampassclasses/encryption",
"options": {
"symlink": false
}
},
{
"type": "path",
"url": "includes/libraries/teampassclasses/language",
"options": {
"symlink": false
}
},
{
"type": "path",
"url": "includes/libraries/teampassclasses/sessionmanager",
"options": {
"symlink": false
}
},
{
"type": "path",
"url": "includes/libraries/teampassclasses/ldapextra",
"options": {
"symlink": false
}
},
{
"type": "path",
"url": "includes/libraries/teampassclasses/superglobal",
"options": {
"symlink": false
}
},
{
"type": "path",
"url": "includes/libraries/teampassclasses/passwordmanager",
"options": {
"symlink": false
}
}
],
"require": {
"php": ">=8.1",
"ext-mysqli": ">=5.1.0",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-bcmath": "*",
"ext-iconv": "*",
"ext-xml": "*",
"ext-gd": "*",
"teampassclasses/sessionmanager": "dev-master",
"teampassclasses/superglobal": "dev-master",
"teampassclasses/nestedtree": "dev-master",
"ezimuel/php-secure-session": "dev-master",
"teampassclasses/performchecks": "dev-master",
"teampassclasses/encryption": "dev-master",
"teampassclasses/language": "dev-master",
"teampassclasses/ldapextra": "dev-master",
"teampassclasses/passwordmanager": "dev-master",
"illuminate/contracts": "^10.32",
"tightenco/collect": "^9.52",
"nesbot/carbon": "^2.71",
"directorytree/ldaprecord": "^2.20",
"voku/anti-xss": "^4.1",
"tiben/crontab-manager": "^1.4",
"sergeytsalkov/meekrodb": "^2.5",
"owasp/csrf-protector-php": "^1.0",
"phpmailer/phpmailer": "^6.8",
"moxiecode/plupload": "^3.1",
"tecnickcom/tcpdf": "^6.6",
"paragonie/random_compat": "^9.99",
"elegantweb/sanitizer": "^2.1",
"defuse/php-encryption": "^2.4",
"dittertp/gibberish-aes-php": "^4.0",
"phpseclib/phpseclib": "~1.0",
"firebase/php-jwt": "^6.9",
"neitanod/forceutf8": "^2.0",
"goodby/csv": "^1.3",
"robthree/twofactorauth": "~2.1",
"passwordlib/passwordlib": "^1.0.0-alpha2",
"hackzilla/password-generator": "^1.6",
"peppeocchi/php-cron-scheduler": "^4.0",
"duosecurity/duo_universal_php": "^1.0",
"spomky-labs/otphp": "^11.2",
"symfony/http-foundation": "^6.4",
"symfony/password-hasher": "^6.4",
"symfony/finder": "^6.3",
"symfony/process": "^6.3",
"symfony/contracts": "^3.4"
}
}