-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
50 lines (42 loc) · 1.22 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
{
"name": "leuchtfeuer/companylistwidget",
"description": "Add Widget that lists Companies (filtered by segment and/or tag) in the Dashboard",
"type": "mautic-plugin",
"license": "GPL-3.0",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Leuchtfeuer Digital Marketing GmbH",
"email": "[email protected]"
}
],
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/Leuchtfeuer/mautic-CompanySegments-bundle"
},
{
"type": "vcs",
"url": "https://github.com/Leuchtfeuer/mautic-CompanyTags-bundle"
}
],
"require": {
"leuchtfeuer/mautic-companytags-bundle": "^1.1",
"leuchtfeuer/mautic-companysegments-bundle":"^1.1"
},
"extra": {
"install-directory-name": "LeuchtfeuerCompanyListWidgetBundle"
},
"autoload": {
"psr-4": {
"MauticPlugin\\LeuchtfeuerCompanySegmentMembersWidgetBundle\\": ""
}
},
"scripts": {
"fixcs": "./vendor/bin/php-cs-fixer fix --show-progress dots -v"
}
}