-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
57 lines (57 loc) · 1.42 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
49
50
51
52
53
54
55
56
57
{
"name": "studioespresso/craft-easyaddressfield",
"description": "The only address field you need",
"type": "craft-plugin",
"version": "5.1.0",
"keywords": [
"cms",
"craftcms",
"fieldtype",
"address",
"yii2"
],
"authors": [
{
"name": "Studio Espresso",
"homepage": "https://www.studioespresso.co"
}
],
"support": {
"email": "support@studioespresso.co",
"issues": "https://github.com/studioespresso/craft3-easyaddressfield/issues",
"docs": "https://github.com/studioespresso/craft3-easyaddressfield/blob/master/README.MD"
},
"require": {
"craftcms/cms": "^5.0.0-alpha",
"league/iso3166": "^3.0",
"giggsey/locale": "^2.0.0",
"maxh/php-nominatim": "^2.0"
},
"require-dev": {
"craftcms/ecs": "dev-main",
"craftcms/phpstan": "dev-main",
"craftcms/rector": "dev-main"
},
"scripts": {
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --ansi --fix",
"phpstan": "phpstan --memory-limit=1G",
"ci": "ecs check --ansi --fix && phpstan --memory-limit=1G"
},
"autoload": {
"psr-4": {
"studioespresso\\easyaddressfield\\": "src/"
}
},
"extra": {
"name": "Easy Address Field",
"handle": "easy-address-field",
"class": "studioespresso\\easyaddressfield\\EasyAddressField"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}