forked from OpenMage/magento-lts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
83 lines (83 loc) · 2.03 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
{
"name": "openmage/magento-lts",
"description": "A fork of Magento-1 that is accepting bug fixes (backward compatible, drop in replacement for official Magento)",
"license": [
"OSL-3.0",
"AFL-3.0"
],
"type": "magento-source",
"require": {
"php": ">=7.3 <8.2",
"ext-ctype": "*",
"ext-curl": "*",
"ext-dom": "*",
"ext-gd": "*",
"ext-hash": "*",
"ext-iconv": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"ext-simplexml": "*",
"ext-soap": "*",
"ext-zlib": "*",
"magento-hackathon/magento-composer-installer": "^3.1 || ^2.1 || ^4.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"friendsofphp/php-cs-fixer": "^3.4",
"macopedia/phpstan-magento1": "^1.0.4",
"magento-ecg/coding-standard": "^4.5",
"phpcompatibility/php-compatibility": "^9.3",
"phpmd/phpmd": "^2.13",
"phpstan/phpstan": "^1.8.10",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.7"
},
"conflict": {
"n98/n98_layouthelper": "*"
},
"authors": [
{
"name": "Lee Saferite",
"email": "[email protected]",
"role": "Maintainer"
},
{
"name": "Daniel Fahlke aka Flyingmana",
"email": "[email protected]",
"role": "Maintainer"
},
{
"name": "David Robinson",
"email": "[email protected]",
"role": "Maintainer"
},
{
"name": "Tymoteusz Motylewski",
"role": "Maintainer"
},
{
"name": "Sven Reichel",
"email": "[email protected]",
"role": "Maintainer"
}
],
"autoload-dev": {
"psr-4": { "OpenMage\\Tests\\Unit\\": "dev/tests/unit" }
},
"extra": {
"branch-alias": {
"dev-main": "1.9.4.x-dev"
},
"magento-root-dir": "."
},
"config": {
"allow-plugins": {
"magento-hackathon/magento-composer-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
}
}