-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
40 lines (40 loc) · 1.04 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
{
"name": "leuchtfeuer/mautic-identity-sync",
"description": "Allow sync of Mautic lead identity from external systems (e.g. CMS login) through a control-pixel with query-parameter.",
"license": "closed",
"type": "mautic-plugin",
"homepage": "https://www.leuchtfeuer.com",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.0",
"mautic/core-lib": "^5.0"
},
"extra": {
"install-directory-name": "LeuchtfeuerIdentitySyncBundle"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^3.4",
"symfony/browser-kit": "^5.4"
},
"autoload": {
"psr-4": {
"MauticPlugin\\LeuchtfeuerIdentitySyncBundle\\": ""
}
},
"autoload-dev": {
"psr-4": {
"MauticPlugin\\LeuchtfeuerIdentitySyncBundle\\Tests\\": "Tests"
}
},
"repositories": [],
"scripts": {
"cs-fix": "./vendor/bin/php-cs-fixer fix --config .php-cs-fixer.php --using-cache no --show-progress dots -v"
},
"config": {
"allow-plugins": {
"symfony/flex": true
}
}
}