-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
33 lines (33 loc) · 897 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
{
"name": "jmalko/constantcontact",
"license": "proprietary",
"type": "statamic-addon",
"description": "Subscribe visitors to your Constant Contact newsletters.",
"require": {
"php": "^7.4 || ^8.0",
"phpfui/constantcontact": "dev-main",
"laravel/framework": "^7.30.3 || ^8.40",
"statamic/cms": "^3.0"
},
"autoload": {
"psr-4": {
"Jmalko\\Constantcontact\\": "src"
}
},
"extra": {
"statamic": {
"name": "Constant Contact Integration",
"description": "Subscribe visitors to your Constant Contact newsletters."
},
"laravel": {
"providers": [
"Jmalko\\Constantcontact\\ServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"pixelfear/composer-dist-plugin": true
}
}
}