forked from thelia/thelia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
108 lines (108 loc) · 3.14 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "thelia/thelia",
"description": "Thelia is an ecommerce CMS.",
"license": "LGPL-3.0+",
"homepage": "http://thelia.net/",
"keywords": [
"ecommerce",
"cms",
"cms ecommerce",
"ecommerce cms"
],
"support": {
"forum": "http://thelia.net/forum",
"wiki": "http://doc.thelia.net"
},
"require": {
"php": ">=5.4",
"ircmaxell/password-compat": "1.0.*",
"propel/propel": "dev-master#793aea6b762d9a72b083bfc49c74c574f67650c8",
"psr/log": "1.0",
"symfony/config": "2.3.*",
"symfony/console": "2.3.*",
"symfony/dependency-injection": "2.3.*",
"symfony/event-dispatcher": "2.3.*",
"symfony/http-kernel": "2.3.*",
"symfony/routing": "2.3.*",
"symfony/filesystem": "2.3.*",
"symfony/yaml": "2.3.*",
"symfony/translation": "2.3.*",
"symfony-cmf/routing": "~1.0",
"symfony/validator": "2.3.*",
"kriswallsmith/assetic": "1.2.*@dev",
"leafo/lessphp": "0.4.*",
"ptachoire/cssembed": "1.0.*",
"doctrine/cache": "v1.3.0",
"simplepie/simplepie": "1.3.*",
"imagine/imagine": "v0.5.0",
"symfony/icu": "1.0",
"swiftmailer/swiftmailer": "5.2.*",
"symfony/serializer": "2.3.*",
"ensepar/html2pdf": "1.0.1",
"symfony/finder": "2.3.*",
"symfony/browser-kit": "2.3.*",
"symfony/http-foundation": "2.3.*",
"symfony/form": "2.3.*",
"stack/builder": "1.0.*",
"thelia/currency-converter": "~1.0",
"smarty/smarty": "v3.1.19",
"symfony/class-loader": "2.3.*",
"maximebf/debugbar": "dev-master",
"oyejorge/less.php": "~1.7"
},
"require-dev": {
"phpunit/phpunit": "4.1.*",
"fzaninotto/faker": "1.5.x-dev",
"thelia/hooktest-module": "~1.0",
"thelia/hooktest-template": "~1.0"
},
"minimum-stability": "stable",
"config": {
"vendor-dir": "core/vendor",
"bin-dir": "bin"
},
"autoload": {
"psr-4": {
"Thelia\\": "core/lib/Thelia"
},
"psr-0": {
"": "local/modules/"
},
"files": [
"core/bootstrap.php"
]
},
"autoload-dev": {
"psr-4": {
"Thelia\\Tests\\" : "tests/phpunit/Thelia/Tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.2-dev"
}
},
"repositories": [
{
"type": "package",
"package": {
"name": "smarty/smarty",
"version": "3.1.19",
"dist": {
"url": "http://www.smarty.net/files/Smarty-3.1.19.zip",
"type": "zip"
},
"source": {
"url": "http://smarty-php.googlecode.com/svn/",
"type": "svn",
"reference": "tags/Smarty_3_1_19/distribution/"
},
"autoload": {
"classmap": [
"libs/"
]
}
}
}
]
}