-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
43 lines (43 loc) · 968 Bytes
/
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
{
"name": "elivz/vzurl",
"description": "A URL fieldtype with validation.",
"type": "craft-plugin",
"version": "2.1.2",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"vz url"
],
"support": {
"docs": "/~https://github.com/elivz/VzUrl-Craft/blob/master/README.md",
"issues": "/~https://github.com/elivz/VzUrl-Craft/issues"
},
"license": "MIT",
"authors": [
{
"name": "Eli Van Zoeren",
"homepage": "/~https://github.com/elivz"
}
],
"require": {
"craftcms/cms": "^3.0.0-RC1"
},
"autoload": {
"psr-4": {
"elivz\\vzurl\\": "src/"
}
},
"extra": {
"name": "VZ URL",
"handle": "vzurl",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/elivz/VzUrl-Craft/master/CHANGELOG.md",
"components": {
"vzUrlService": "elivz\\vzurl\\services\\VzUrlService"
},
"class": "elivz\\vzurl\\VzUrl"
}
}