-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.13 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
{
"name": "dotdigital/dotdigital-for-shopware-flowbuilder",
"description": "Integrate with Dotdigital using Flow Builder actions.",
"version": "2.1.0",
"type": "shopware-platform-plugin",
"license": "MIT",
"authors": [
{
"name": "Dotdigital"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.1",
"dotdigital/dotdigital-php": "2.1.0"
},
"require-dev": {
"shopware/core": "^6.5.0.0",
"shopware/administration": "^6.5.0.0",
"shopware/storefront": "^6.5.0.0",
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.9",
"dg/bypass-finals": "^1.4"
},
"extra": {
"shopware-plugin-class": "Dotdigital\\Flow\\DotdigitalFlow",
"label": {
"en-GB": "Dotdigital for Shopware - Flow Builder"
},
"description": {
"en-GB": "Integrate with Dotdigital using Flow Builder actions."
}
},
"autoload": {
"psr-4": {
"Dotdigital\\Flow\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dotdigital\\Tests\\": "tests/PHPUnit"
}
},
"config": {
"allow-plugins": {
"symfony/runtime": true,
"php-http/discovery": true
}
}
}