-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·37 lines (37 loc) · 968 Bytes
/
composer.json
File metadata and controls
executable file
·37 lines (37 loc) · 968 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
35
36
37
{
"name": "codeq/passwordprotectedcontent",
"type": "neos-package",
"description": "Password protect any document and content NodeType",
"license": "MIT",
"keywords": ["flow", "neos", "fusion", "password"],
"require": {
"neos/neos": "~3.2 || ~4.0 || ~5.0 || ~7.0 || ~8.0 || dev-master",
"carbon/notification": "^1.0 || ^2.0 || dev-master"
},
"autoload": {
"psr-4": {
"CodeQ\\PasswordProtectedContent\\": "Classes/"
}
},
"authors": [
{
"name": "Roland Schütz",
"email": "rs@codeq.at",
"homepage": "https://codeq.at",
"role": "Developer"
}
],
"archive": {
"exclude": [
".editorconfig",
".gitattributes",
".github",
".gitignore"
]
},
"extra": {
"neos": {
"package-key": "CodeQ.PasswordProtectedContent"
}
}
}