-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.19 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
{
"name": "bencarr/craft-entrypassword",
"description": "Password-protect individual entries with a simple password outside of Craft’s user authentication system",
"type": "craft-plugin",
"version": "1.0.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"entry password"
],
"support": {
"docs": "https://github.com/bencarr/craft-entrypassword/blob/main/README.md",
"issues": "https://github.com/bencarr/craft-entrypassword/issues"
},
"license": "MIT",
"authors": [
{
"name": "Ben Carr",
"homepage": "https://github.com/bencarr"
}
],
"require": {
"php": ">=7.4",
"craftcms/cms": "^3.7.0"
},
"autoload": {
"psr-4": {
"bencarr\\entrypassword\\": "src/"
}
},
"extra": {
"name": "Entry Password",
"handle": "entry-password",
"developer": "Ben Carr",
"developerUrl": "https://github.com/bencarr",
"hasCpSettings": false,
"hasCpSection": false,
"documentationUrl": "https://github.com/bencarr/craft-entrypassword/blob/main/README.md",
"changelogUrl": "https://github.com/bencarr/craft-entrypassword/blob/main/CHANGELOG.md",
"class": "bencarr\\entrypassword\\EntryPassword"
}
}