forked from cpartica/code-migration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
78 lines (78 loc) · 2.67 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
{
"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": "http://packages.magento.com"
},
"pear": {
"type": "pear",
"url": "http://pear.php.net"
}
},
"require": {
"php": "~5.5.0|~5.6.0",
"composer/composer": "1.0.0-alpha10",
"symfony/console": "2.7.4",
"monolog/monolog": "1.17.1",
"zendframework/zend-stdlib": "2.4.0",
"zendframework/zend-code": "2.4.0",
"zendframework/zend-server": "2.4.0",
"zendframework/zend-soap": "2.4.0",
"zendframework/zend-uri": "2.4.0",
"zendframework/zend-validator": "2.4.0",
"zendframework/zend-crypt": "2.4.0",
"zendframework/zend-console": "2.4.0",
"zendframework/zend-modulemanager": "2.4.0",
"zendframework/zend-mvc": "2.4.0",
"zendframework/zend-text": "2.4.0",
"zendframework/zend-i18n": "2.4.0",
"zendframework/zend-eventmanager": "2.4.0",
"zendframework/zend-view": "2.4.0",
"zendframework/zend-servicemanager": "2.4.0",
"zendframework/zend-json": "2.4.0",
"zendframework/zend-config": "2.4.0",
"zendframework/zend-form": "2.4.0",
"zendframework/zend-di": "2.4.0",
"zendframework/zend-serializer": "2.4.0",
"zendframework/zend-log": "2.4.0",
"zendframework/zend-http": "2.4.0",
"magento/zendframework1": "1.12.13",
"magento/framework": "~1.0.0-beta",
"pear-pear.php.net/xml_serializer": "*"
},
"require-dev": {
"phpunit/phpunit": "4.1.0",
"sebastian/phpcpd": "2.0.0",
"squizlabs/php_codesniffer": "1.5.3",
"phpmd/phpmd": "@stable",
"pdepend/pdepend": "2.0.6",
"sjparkinson/static-review": "~4.1",
"fabpot/php-cs-fixer": "~1.2"
},
"config": {
"use-include-path": true
},
"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/"
}
},
"minimum-stability": "alpha",
"prefer-stable": true
}