-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 932 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 932 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
38
39
40
41
{
"name": "codemonauts/craft-shortener",
"description": "An URL Shortener for Craft CMS.",
"version": "2.1.0",
"type": "craft-plugin",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"shortener",
"link",
"qrcode"
],
"license": "proprietary",
"authors": [
{
"name": "codemonauts",
"homepage": "https://codemonauts.com"
}
],
"support": {
"source": "https://github.com/codemonauts/craft-shortener",
"docs": "https://github.com/codemonauts/craft-shortener/blob/master/README.md",
"issues": "https://github.com/codemonauts/craft-shortener/issues"
},
"require": {
"craftcms/cms": "^4.0.0",
"chillerlan/php-qrcode": "^4.3.3"
},
"autoload": {
"psr-4": {
"codemonauts\\shortener\\": "src/"
}
},
"extra": {
"handle": "shortener",
"class": "codemonauts\\shortener\\Shortener",
"name": "URL Shortener"
}
}