-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.19 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.19 KB
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
{
"name": "webanyone/mautic-ecommerce-bundle",
"description": "MauticEcommerceBundle",
"license": "GPL-3.0",
"type": "mautic-plugin",
"keywords": [
"mautic",
"plugin",
"integration",
"ecommerce"
],
"extra": {
"install-directory-name": "MauticEcommerceBundle",
"branch-alias": {
"dev-main": "0.0.x-dev"
}
},
"autoload-dev": {
"psr-4": {
"MauticPlugin\\MauticEcommerceBundle\\": ""
}
},
"minimum-stability": "dev",
"require": {
"php": ">=7.4.0 <8.1",
"mautic/core-lib": "^4.0",
"symfony/serializer": ">=4.4",
"guzzlehttp/oauth-subscriber": "^0.6.0"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/dennisameling/FOSOAuthServerBundle.git"
}
],
"require-dev": {
"friendsofphp/php-cs-fixer": "*",
"phpunit/phpunit": "^9.5",
"phpspec/prophecy-phpunit": "^2.0",
"jangregor/phpstan-prophecy": "dev-master",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan-doctrine": "^1.3",
"phpstan/phpstan": "^1.10"
},
"config": {
"allow-plugins": {
"symfony/flex": true,
"phpstan/extension-installer": true,
"php-http/discovery": true
}
}
}