-
Notifications
You must be signed in to change notification settings - Fork 98
/
composer.json
67 lines (67 loc) · 1.99 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
{
"name": "ec-cube/ec-cube2",
"description": "EC-CUBE 2.x",
"type": "project",
"homepage": "http://www.ec-cube.net/",
"license": [
"GPL-2.0",
"Commercial"
],
"support": {
"issues": "https://github.com/EC-CUBE/ec-cube2/issues"
},
"config": {
"vendor-dir": "data/vendor",
"platform": {
"php": "7.4.0"
},
"optimize-autoloader": true,
"sort-packages": true,
"preferred-install": {
"*": "dist"
}
},
"require-dev": {
"doctrine/instantiator": "~1.5.0",
"fakerphp/faker": "^1.23",
"friendsofphp/php-cs-fixer": "^3.9",
"nanasess/ec-cube2-class-extends-stubs": "^1.0",
"nanasess/eccube2-fixture-generator": "^2.0",
"phpdocumentor/reflection-docblock": "~5.4.0",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.6",
"symfony/yaml": "^5.4 || ^6.4"
},
"require": {
"php": "^7.4 || ^8.0",
"ext-gd": "*",
"ext-mbstring": "*",
"mobiledetect/mobiledetectlib": "^3.74",
"nanasess/mdb2": "^2.5",
"nanasess/php8-compat": "^1.0",
"pear/archive_tar": "^1.4.3",
"pear/mail": "*",
"pear/pear-core-minimal": "^1.10",
"pear/xml_parser": "*",
"pear/xml_serializer": "*",
"pear/xml_util": "*",
"setasign/fpdf": "^1.8",
"setasign/fpdi": "^2.6",
"smarty/smarty": "^5.0.2"
},
"autoload": {
"classmap": [
"data/class",
"data/class_extends"
],
"files": [
"data/smarty_extends/function.from_to.php",
"data/smarty_extends/function.include_php_ex.php",
"data/smarty_extends/modifier.h.php",
"data/smarty_extends/modifier.n2s.php",
"data/smarty_extends/modifier.nl2br_html.php",
"data/smarty_extends/modifier.script_escape.php",
"data/smarty_extends/modifier.u.php"
]
}
}