-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
46 lines (46 loc) · 1.25 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
{
"name": "akeneo/icecat-connector",
"type": "symfony-bundle",
"description": "Icecat connector for Akeneo PIM",
"license": "OSL-3.0",
"authors": [
{
"name": "Akeneo",
"homepage": "http://www.akeneo.com"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/akeneo/pim-community-dev.git"
}
],
"require": {
"php": ">=7.1",
"akeneo/extended-attribute-type": "2.1.*",
"akeneo/pim-community-dev": "^2.2",
"guzzlehttp/guzzle": "6.*",
"prewk/xml-string-streamer": "0.9.*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "@stable",
"phpspec/phpspec": "~3.4",
"phpunit/phpunit": "~5.7.22"
},
"autoload": {
"psr-4": {
"Pim\\Bundle\\IcecatConnectorBundle\\": "src/IcecatConnector/",
"Pim\\Bundle\\IcecatConnectorBundle\\Tests\\": "tests/IcecatConnector/Integration/",
"Pim\\Bundle\\ExtendedMeasureBundle\\": "src/ExtendedMeasure/"
},
"psr-0": {
"spec": "spec/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev",
"dev-1.0": "1.0.x-dev"
}
}
}