forked from newism/craft3-fields
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.28 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
45
46
47
48
{
"name": "esign/craft3-fields",
"description": "Address, telephone and email fields for CraftCMS",
"type": "craft-plugin",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"nsm-fields"
],
"support": {
"docs": "https://github.com/newism/craft3-fields/blob/master/README.md",
"issues": "https://github.com/newism/craft3-fields/issues"
},
"license": "MIT",
"authors": [
{
"name": "Newism",
"homepage": "http://newism.com.au"
},
{
"name": "Leevi Graham",
"homepage": "http://leevigraham.com"
}
],
"require": {
"craftcms/cms": "^4.0.0",
"giggsey/libphonenumber-for-php": "^8.3",
"commerceguys/addressing": "^1.0",
"nyholm/psr7": "^1.2",
"embed/embed": "^4.0"
},
"autoload": {
"psr-4": {
"newism\\fields\\": "src/"
}
},
"extra": {
"name": "NSM Fields",
"handle": "nsm-fields",
"schemaVersion": "1.0.0",
"hasCpSettings": true,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/newism/craft-fields/master/CHANGELOG.md",
"class": "newism\\fields\\NsmFields"
}
}