forked from oroinc/OroAkeneoBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 2.07 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
{
"name": "oro/commerce-akeneo",
"description": "Akeneo PIM OroCommerce Connector.",
"homepage": "https://github.com/oroinc/OroAkeneoBundle",
"license": "OSL-3.0",
"authors": [
{
"name": "Oro, Inc",
"homepage": "https://www.orocommerce.com/"
}
],
"autoload": {
"psr-4": {
"Oro\\Bundle\\AkeneoBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"require": {
"php": "7.1.*|7.2.*",
"ext-json": "*",
"oro/commerce-enterprise": "3.1.* <=3.1.23",
"akeneo/api-php-client-ee": "3.0.*",
"php-http/guzzle6-adapter": "1.1.*",
"php-http/message": "1.7.*",
"cweagans/composer-patches": "~1.6"
},
"repositories": {
"oro": {
"type": "composer",
"url": "https://packagist.orocrm.com"
},
"asset-packagist": {
"type": "composer",
"url": "https://asset-packagist.orocrm.com"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"patches": {
"oro/platform": {
"BAP-19164: Child jobs stuck when consumers fail with out of memory error/other non-recoverable fatal like parsing error": "https://raw.githubusercontent.com/oroinc/OroAkeneoBundle/3.1/patches/job_runner_impovement.patch",
"BAP-19127: Log Allowed memory size of x bytes exhausted errors": "https://raw.githubusercontent.com/oroinc/OroAkeneoBundle/3.1/patches/oro_distribution_bundle_improvement.patch"
},
"monolog/monolog": {
"BAP-19127: Log Allowed memory size of x bytes exhausted errors": "https://raw.githubusercontent.com/oroinc/OroAkeneoBundle/3.1/patches/monolog_error_handler_improvement.patch"
},
"symfony/symfony": {
"BAP-19127: Log Allowed memory size of x bytes exhausted errors": "https://raw.githubusercontent.com/oroinc/OroAkeneoBundle/3.1/patches/symfony_error_handler_improvement.patch"
}
}
}
}