-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
95 lines (95 loc) · 3.57 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
{
"name": "kiboko/dam",
"description": "Kiboko DAM application",
"homepage": "https://github.com/kiboko-labs/dam-bundle.git",
"license": "MIT",
"autoload": {
"psr-4": {
"": "src/",
"App\\": "src/",
"Kiboko\\Bundle\\DAMBundle\\": "src/DAMBundle/",
"Kiboko\\Bridge\\DAMAmazonBridge\\": "src/DAMAmazonBridge/",
"Kiboko\\Bridge\\DAMAzureBridge\\": "src/DAMAzureBridge/",
"Kiboko\\Bridge\\DAMGoogleBridge\\": "src/DAMGoogleBridge/"
},
"classmap": [
"src/AppKernel.php",
"src/AppCache.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/platform": "3.1.0-rc",
"league/flysystem": "^1.0",
"ramsey/uuid-doctrine": "^1.5",
"oro/platform-serialised-fields": "3.1.0-rc"
},
"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": "2.8.*",
"phpmd/phpmd": "2.6.*",
"sebastian/phpcpd": "3.0.*",
"phpunit/phpcov": "4.0.*",
"symfony/phpunit-bridge": "3.4.*",
"friendsofphp/php-cs-fixer": "2.12.*",
"league/flysystem-aws-s3-v3": "^1.0",
"league/flysystem-azure-blob-storage": "^0.1.4",
"spatie/flysystem-dropbox": "^1.0",
"league/flysystem-sftp": "^1.0",
"superbalist/flysystem-google-storage": "^7.1"
},
"config": {
"component-dir": "public/bundles/components",
"bin-dir": "bin",
"fxp-asset": {
"enabled": false
}
},
"scripts": {
"post-install-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"Oro\\Bundle\\InstallerBundle\\Composer\\ScriptHandler::setPermissions",
"Oro\\Bundle\\InstallerBundle\\Composer\\ScriptHandler::installAssets",
"Oro\\Bundle\\InstallerBundle\\Composer\\ScriptHandler::setAssetsVersion"
],
"post-update-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"Oro\\Bundle\\InstallerBundle\\Composer\\ScriptHandler::setPermissions",
"Oro\\Bundle\\InstallerBundle\\Composer\\ScriptHandler::installAssets",
"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"
}
}
}