-
Notifications
You must be signed in to change notification settings - Fork 42
/
composer.json
79 lines (78 loc) · 2.6 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
{
"name": "diamante/desk-application",
"description": "DiamanteDesk Application",
"homepage": "https://github.com/eltrino/diamantedesk-application.git",
"license": "OSL-3.0",
"authors": [
{
"name": "Eltrino LLC",
"homepage": "http://eltrino.com"
}
],
"autoload": {
"psr-4": {"": "src/"},
"exclude-from-classmap": ["**/Tests/"]
},
"repositories": [
{
"type": "composer",
"url": "https://packagist.orocrm.com"
}
],
"config": {
"component-dir": "web/bundles/components",
"bin-dir": "bin"
},
"require":{
"php": ">=5.4.4",
"oro/platform": "2.1.*",
"oro/platform-serialised-fields": "2.1.*",
"akeneo/batch-bundle": "0.4.2",
"monolog/monolog": "~1.22",
"nelmio/api-doc-bundle": "~2.13",
"jms/serializer-bundle": "~1.1",
"beberlei/assert": "2.*",
"zendframework/zend-mail": "~2.4",
"ezyang/htmlpurifier": "~4.8",
"bordeux/email-cleaner": "0.6.*",
"michelf/php-markdown": "~1.4",
"hwi/oauth-bundle": "~0.5",
"ramsey/uuid": "~3.5",
"jms/job-queue-bundle": "1.4"
},
"require-dev": {
"phpunit/phpunit": "4.8.*",
"eltrino/phpunit-mockannotations": "*"
},
"scripts": {
"post-install-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Oro\\Bundle\\InstallerBundle\\Composer\\ScriptHandler::setPermissions",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets"
],
"post-update-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Oro\\Bundle\\InstallerBundle\\Composer\\ScriptHandler::setPermissions",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
},
"symfony-assets-install": "symlink",
"branch-alias": {
"dev-master": "2.0.x-dev"
},
"asset-installer-paths": {
"npm-asset-library": "web/bundles/npmassets",
"bower-asset-library": "web/bundles/bowerassets"
}
}
}