-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
48 lines (48 loc) · 1.42 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
{
"name": "imarc/craft-password-protection",
"description": "Password protect any page on the CMS.",
"type": "craft-plugin",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"password protection"
],
"support": {
"docs": "https://github.com/imarc/craft-password-protection",
"issues": "https://github.com/imarc/craft-password-protection/issues"
},
"license": "proprietary",
"authors": [
{
"name": "Imarc",
"homepage": "https://www.imarc.com/"
}
],
"require": {
"craftcms/cms": "^3.0.0"
},
"require-dev": {
"craftcms/cms": "^3.2.0",
"codeception/codeception": "^3.0",
"vlucas/phpdotenv": "^3.0"
},
"autoload": {
"psr-4": {
"Imarc\\Craft\\PasswordProtection\\": "src/"
}
},
"extra": {
"name": "Password Protection",
"handle": "password-protection",
"developer": "Imarc",
"developerUrl": "https://www.imarc.com/",
"documentationUrl": "https://github.com/imarc/craft-password-protection",
"changelogUrl": "https://github.com/imarc/craft-password-protection/releases",
"components": {
"passwordProtectionService": "Imarc\\PasswordProtection\\Services\\PasswordProtectionService"
},
"class": "Imarc\\Craft\\PasswordProtection\\PasswordProtection"
}
}