-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.16 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.16 KB
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
{
"name": "totphog/totphog",
"description": "TOTP code manager - like MailHog but for TOTP codes",
"type": "project",
"license": "MIT",
"require": {
"php": ">=8.2",
"symfony/framework-bundle": "^7.0",
"symfony/twig-bundle": "^7.0",
"symfony/asset": "^7.0",
"symfony/yaml": "^7.0",
"symfony/dotenv": "^7.0",
"symfony/runtime": "^7.0",
"symfony/string": "^7.0",
"spomky-labs/otphp": "^11.0",
"endroid/qr-code": "^5.0",
"symfony/uid": "^7.0"
},
"require-dev": {
"symfony/maker-bundle": "^1.50",
"phpunit/phpunit": "^11.0",
"symfony/test-pack": "^1.1",
"symfony/browser-kit": "^7.0",
"symfony/css-selector": "^7.0"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-contrib": false,
"allow-plugins": {
"symfony/runtime": true
}
},
"scripts": {},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "7.0.*"
}
}
}