forked from EC-CUBE/ec-cube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
63 lines (63 loc) · 1.73 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
{
"name": "EC-CUBE/ec-cube",
"description": "EC-CUBE EC open platform.",
"type": "project",
"homepage": "http://www.ec-cube.net/",
"license": [
"GPL-2.0",
"Commercial"
],
"support": {
"issues": "https://github.com/EC-CUBE/ec-cube/issues"
},
"repositories": [
{
"type": "pear",
"url": "http://pear.php.net/"
}
],
"require": {
"php": ">=5.3.3",
"silex/silex": "~1.2",
"silex/web-profiler": "~1.0",
"doctrine/orm": "<2.5",
"symfony/monolog-bridge": "~2.3",
"symfony/twig-bridge": "~2.3",
"symfony/finder": "~2.3",
"symfony/yaml": "~2.3",
"symfony/form": "~2.3",
"symfony/validator": "~2.3",
"symfony/translation": "~2.3",
"symfony/config": "~2.3",
"symfony/security": "~2.3",
"symfony/doctrine-bridge": "~2.3",
"dflydev/doctrine-orm-service-provider": "*",
"saxulum/saxulum-doctrine-orm-manager-registry-provider": "*",
"saxulum/saxulum-webprofiler-provider": "*",
"swiftmailer/swiftmailer": "5.*",
"knplabs/knp-components": "*"
},
"require-dev": {
"satooshi/php-coveralls": "dev-master",
"phpunit/phpunit": "4.6.*",
"phing/phing": "2.*",
"symfony/browser-kit": "~2.3",
"symfony/css-selector": "~2.3"
},
"autoload": {
"psr-4": {
"Eccube\\": "src/Eccube",
"Plugin\\": "app/Plugin"
},
"classmap": [
"src/fpdf/fpdf.php",
"src/fpdi",
"src/gdthumb"
]
},
"autoload-dev" : {
"psr-4": {
"Eccube\\Tests\\" : "tests/Eccube/Tests"
}
}
}