forked from oroinc/orocommerce-application
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
108 lines (108 loc) · 3.04 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": "oro/commerce-crm-application",
"description": "OroCommerce - an open-source Business to Business Commerce application.\\This package contains a sample application.",
"license": "OSL-3.0",
"authors": [
{
"name": "Oro, Inc",
"homepage": "https://www.orocommerce.com"
}
],
"autoload": {
"psr-4": {"": "src/"},
"files": ["src/AppKernel.php"],
"exclude-from-classmap": ["**/Tests/"]
},
"repositories": {
"composer": {
"type": "composer",
"url": "https://packagist.orocrm.com"
},
"asset-packagist": {
"type": "composer",
"url": "https://asset-packagist.orocrm.com"
}
},
"require": {
"oro/crm": "3.1.*",
"oro/platform-serialised-fields": "3.1.*",
"oro/crm-hangouts-call-bundle": "3.1.*",
"oro/crm-magento-embedded-contact-us": "3.1.*",
"oro/crm-dotmailer": "3.1.*",
"oro/crm-zendesk": "3.1.*",
"oro/commerce": "3.1.*",
"oro/commerce-crm": "3.1.*"
},
"require-dev": {
"sensio/generator-bundle": "3.1.*",
"behat/behat": "3.4.*",
"behat/mink-extension": "2.3.*",
"behat/mink-selenium2-driver": "1.*",
"behat/symfony2-extension": "2.1.*",
"nelmio/alice": "2.3.*",
"phpunit/phpunit": "6.5.*",
"johnkary/phpunit-speedtrap": "2.0.*",
"mybuilder/phpunit-accelerator": "2.0.*",
"squizlabs/php_codesniffer": "3.3.*",
"phpmd/phpmd": "2.6.*",
"sebastian/phpcpd": "3.0.*",
"phpunit/phpcov": "4.0.*",
"symfony/phpunit-bridge": "3.4.*",
"friendsofphp/php-cs-fixer": "2.12.6",
"oro/twig-inspector": "1.0.*"
},
"config": {
"component-dir": "public/bundles/components",
"bin-dir": "bin",
"fxp-asset": {
"enabled": false
}
},
"scripts": {
"post-install-cmd": [
"@build-parameters",
"@build-bootstrap",
"@install-requirements-file",
"@set-permissions",
"@install-assets",
"@set-assets-version"
],
"post-update-cmd": [
"@build-parameters",
"@build-bootstrap",
"@install-requirements-file",
"@set-permissions",
"@install-assets",
"@set-assets-version"
],
"build-parameters": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
],
"build-bootstrap": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap"
],
"install-requirements-file": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
],
"set-permissions": [
"Oro\\Bundle\\InstallerBundle\\Composer\\ScriptHandler::setPermissions"
],
"install-assets": [
"Oro\\Bundle\\InstallerBundle\\Composer\\ScriptHandler::installAssets"
],
"set-assets-version": [
"Oro\\Bundle\\InstallerBundle\\Composer\\ScriptHandler::setAssetsVersion"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"symfony-web-dir": "public",
"symfony-var-dir": "var",
"symfony-bin-dir": "bin",
"symfony-tests-dir": "tests",
"incenteev-parameters": {
"file": "config/parameters.yml"
}
}
}