-
Notifications
You must be signed in to change notification settings - Fork 48
/
composer.json
executable file
·63 lines (63 loc) · 1.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
{
"name": "imagecms/imagecms",
"description": "Content managment system in two editions: Corporate (Free) & Shop (Proprietary)",
"keywords": [
"CMS",
"E-commerce"
],
"license": "proprietary",
"homepage": "http://www.imagecms.net",
"type": "project",
"config": {
"vendor-dir": "application/third_party"
},
"autoload": {
"psr-4": {
"": [
"application/modules/",
"application/modules/shop/classes/",
"application/modules/shop/models/",
"hooks"
],
"libraries\\": [
"application/libraries/"
]
}
},
"require": {
"php": ">=5.5",
"ext-curl": "*",
"propel/propel": "dev-master",
"monolog/monolog": ">1.12",
"tubalmartin/cssmin": "dev-master",
"patchwork/jsqueeze": "~2.0",
"greenlion/php-sql-parser": ">=4.0",
"nqxcode/phpmorphy": "^1.0",
"gettext/gettext": ">=3.5.3",
"symfony/config": "^3.0",
"symfony/var-dumper": "^3.0",
"symfony/event-dispatcher": "^3.0",
"symfony/dependency-injection": "^3.0",
"tinymce/tinymce": ">=4",
"doctrine/common": "^2.6",
"symfony/expression-language": "^3.1",
"studio-42/elfinder": "~2.1.12",
"symfony/debug": "^3.1"
},
"require-dev": {
"phpmd/phpmd": ">=2.2.2",
"imagecms/coding-standard": "dev-master",
"symfony/stopwatch": "^3.1",
"blackfire/php-sdk": "^1.5"
},
"scripts": {
"post-update-cmd": [
"ImageCMSHooks::copyTinyMCEFiles",
"php application/third_party/propel/propel/bin/propel --verbose build"
],
"post-install-cmd": [
"ImageCMSHooks::copyTinyMCEFiles",
"php application/third_party/propel/propel/bin/propel --verbose build"
]
}
}