-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 888 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 888 Bytes
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
{
"name": "grimpirate/halberd",
"description": "CodeIgniter4 Google Two-Factor Authentication Module for Shield",
"license": "MIT",
"homepage": "https://github.com/grimpirate/halberd",
"require": {
"php": "^8.2",
"ext-xmlwriter": "*",
"codeigniter4/settings": "^2.2",
"codeigniter4/shield": "dev-develop",
"pragmarx/google2fa": "^9.0",
"bacon/bacon-qr-code": "^3.0"
},
"keywords": [
"codeigniter4",
"authentication"
],
"autoload": {
"psr-4": {
"GrimPirate\\Halberd\\": "src"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"scripts": {
"post-update-cmd": [
"GrimPirate\\Halberd\\ComposerScripts::postUpdate"
]
}
}