-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.05 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.05 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
{
"name": "ynmstudio/craft-review",
"description": "See all entries that are not published yet and need to be reviewed by an administrator.",
"type": "craft-plugin",
"version": "4.0.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"review"
],
"support": {
"docs": "https://github.com/ynmstudio/craft-review/blob/master/README.md",
"issues": "https://github.com/ynmstudio/craft-review/issues"
},
"license": "MIT",
"authors": [
{
"name": "Denis Yilmaz",
"homepage": "https://ynm.studio"
}
],
"require": {
"craftcms/cms": "^4.0 | ^5.0"
},
"autoload": {
"psr-4": {
"ynmstudio\\review\\": "src/"
}
},
"extra": {
"name": "Review",
"handle": "review",
"developer": "Denis Yilmaz",
"developerUrl": "https://ynm.studio",
"documentationUrl": "https://github.com/ynmstudio/craft-review/blob/master/README.md",
"changelogUrl": "https://raw.githubusercontent.com/ynmstudio/review/master/CHANGELOG.md",
"class": "ynmstudio\\review\\Review"
}
}