-
Notifications
You must be signed in to change notification settings - Fork 93
/
composer.json
86 lines (86 loc) · 2.39 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "pimcore/customer-management-framework-bundle",
"license": "GPL-3.0-or-later",
"type": "pimcore-bundle",
"config": {
"sort-packages": true,
"preferred-install": {
"pimcore/pimcore": "source",
"*": "dist"
},
"allow-plugins": {
"ocramius/package-versions": true
}
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"doctrine/dbal": "^3.4.2",
"doctrine/migrations": "^3.0.2",
"dragonmantank/cron-expression": "^3.0.2",
"drewm/mailchimp-api": "^2.2",
"guzzlehttp/guzzle": "^7.2",
"knplabs/knp-components": "^4.0",
"openspout/openspout": "^4.0",
"pear/archive_tar": "^1.4.14",
"pimcore/newsletter-bundle": "^1.0",
"pimcore/number-sequence-generator": "^2.0",
"pimcore/admin-ui-classic-bundle": "^1.0",
"pimcore/object-merger": "^4.0",
"pimcore/pimcore": "^11.0",
"pimcore/search-query-parser": "^1.3",
"pimcore/personalization-bundle": "^1.0",
"symfony/asset": "^6.2",
"symfony/config": "^6.2",
"symfony/console": "^6.2",
"symfony/dependency-injection": "^6.2",
"symfony/event-dispatcher": "^6.2",
"symfony/http-foundation": "^6.2",
"symfony/http-kernel": "^6.2",
"symfony/options-resolver": "^6.2",
"symfony/routing": "^6.2",
"symfony/security-bundle": "^6.2",
"symfony/security-core": "^6.2",
"symfony/security-http": "^6.2",
"symfony/stopwatch": "^6.2"
},
"require-dev": {
"codeception/codeception": "^5.0.3",
"codeception/module-symfony": "^3.1.0",
"codeception/phpunit-wrapper": "^9",
"php-http/guzzle7-adapter": "^0.1.1",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-symfony": "^1.2.14",
"phpunit/phpunit": "^9.5"
},
"suggest": {
"php-http/guzzle7-adapter": "^0.1.1",
"php-http/httplug-bundle": "^1.20.0"
},
"autoload": {
"psr-4": {
"CustomerManagementFrameworkBundle\\": "src/",
"Pimcore\\": "core-extension/Pimcore/"
},
"exclude-from-classmap": [
"frontend/",
"frontend-samples/",
"install/"
]
},
"autoload-dev": {
"psr-4": {
"CustomerManagementFrameworkBundle\\Tests\\": "tests",
"Pimcore\\Model\\DataObject\\": "var/classes/DataObject"
},
"files": [
"kernel/Kernel.php"
]
},
"extra": {
"pimcore": {
"bundles": [
"CustomerManagementFrameworkBundle\\PimcoreCustomerManagementFrameworkBundle"
]
}
}
}