forked from eltrino/diamantedesk-application
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
72 lines (71 loc) · 2.28 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
{
"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-0": {
"": "src/"
}
},
"repositories": [
{
"type": "composer",
"url": "https://packagist.orocrm.com"
}
],
"config": {
"component-dir": "web/bundles/components"
},
"require":{
"php": ">=5.4.4",
"oro/platform": "1.8.*",
"akeneo/batch-bundle": "0.4.2",
"monolog/monolog": "1.8.0",
"nelmio/api-doc-bundle": "2.9.*",
"jms/serializer-bundle": "0.*",
"beberlei/assert": "2.*",
"zendframework/zend-mail": "~2.1.5",
"ezyang/htmlpurifier": "4.6.*",
"bordeux/email-cleaner": "0.6.*",
"michelf/php-markdown": "~1.4",
"hwi/oauth-bundle": "0.3.9 as 1.0"
},
"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"
}
}
}