-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
84 lines (84 loc) · 2.1 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
{
"name": "akeneo/dam-connector",
"description": "Connector between Akeneo PIM and DAM",
"license": "MIT",
"type": "project",
"authors": [
{
"name": "Akeneo",
"homepage": "http://www.akeneo.com"
}
],
"require": {
"php": "^7.1.3",
"ext-ctype": "*",
"ext-iconv": "*",
"akeneo/api-php-client-ee": "dev-asset-family@dev",
"akeneo/api-php-client": "dev-master@dev",
"doctrine/dbal": "2.9.*",
"http-interop/http-factory-guzzle": "^1.0",
"php-http/guzzle6-adapter": "^2.0",
"symfony/console": "4.3.*",
"symfony/dotenv": "4.3.*",
"symfony/flex": "^1.3.1",
"symfony/framework-bundle": "4.3.*",
"symfony/yaml": "4.3.*"
},
"require-dev": {
"akeneo/php-coupling-detector": "0.3.*",
"phpspec/phpspec": "^4.0",
"symfony/test-pack": "^1.0"
},
"repositories": [
{
"type": "vcs",
"url": "[email protected]:akeneo/api-php-client-ee.git"
}
],
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"bin-dir": "vendor/bin"
},
"autoload": {
"psr-4": {
"AkeneoDAMConnector\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AkeneoDAMConnector\\Tests\\": "tests/"
}
},
"replace": {
"paragonie/random_compat": "2.*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"minimum-stability": "stable",
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "4.3.*"
}
}
}