-
Notifications
You must be signed in to change notification settings - Fork 114
/
composer.json
57 lines (57 loc) · 1.75 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
{
"name": "magento/migration",
"description": "Tools for migrating Magento 1 extensions to Magento 2",
"type": "project",
"version": "0.0.1-alpha",
"license": [
"OSL-3.0",
"AFL-3.0"
],
"repositories": {
"magento": {
"type": "composer",
"url": "https://repo.magento.com"
},
"pear": {
"type": "pear",
"url": "https://pear.php.net"
}
},
"require": {
"php": "~7.1.0",
"symfony/console": "2.7.4",
"monolog/monolog": "1.17.1",
"zendframework/zend-stdlib": "^2.7.7",
"zendframework/zend-code": "~3.1.0",
"magento/zendframework1": "~1.13.0",
"magento/framework": "*",
"pear-pear.php.net/xml_serializer": "*",
"zendframework/zend-http": "^2.6.0"
},
"require-dev": {
"phpunit/phpunit": "~6.1.0",
"sebastian/phpcpd": "2.0.4",
"squizlabs/php_codesniffer": "3.2.2",
"phpmd/phpmd": "@stable",
"pdepend/pdepend": "2.5.2",
"sjparkinson/static-review": "~4.1",
"friendsofphp/php-cs-fixer": "~1.2"
},
"config": {
"use-include-path": true,
"secure-http": false
},
"autoload": {
"psr-4": {
"Magento\\Migration\\": "src/Magento/Migration/"
}
},
"autoload-dev": {
"psr-4": {
"Magento\\Migration\\": "tests/unit/Magento/Migration/",
"Magento\\Sniffs\\": "dev/tests/static/framework/Magento/Sniffs/",
"Magento\\TestFramework\\Inspection\\": "dev/tests/static/framework/Magento/TestFramework/Inspection/",
"Magento\\TestFramework\\Utility\\": "dev/tests/static/framework/Magento/TestFramework/Utility/"
}
}
}