-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcomposer.json
47 lines (47 loc) · 1.56 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
{
"name": "oro/customer-portal",
"homepage": "https://github.com/oroinc/customer-portal",
"license": "OSL-3.0",
"authors": [
{
"name": "Oro, Inc",
"homepage": "https://oroinc.com/"
}
],
"require": {
"oro/platform": "6.1.*",
"oro/platform-serialised-fields": "6.1.*",
"oro/calendar-bundle": "6.1.*",
"oro/marketing": "6.1.*",
"oro/commerce": "6.1.*"
},
"extra": {
"npm": {
"prismjs": "^1.23.0"
},
"branch-alias": {
"dev-master": "6.1-dev"
}
},
"repositories": {
"oro": {
"type": "composer",
"url": "https://packagist.oroinc.com"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Oro\\Bridge\\CRMCustomerPortal\\": "src/Oro/Bridge/CRMCustomerPortal",
"Oro\\Bundle\\CommerceMenuBundle\\": "src/Oro/Bundle/CommerceMenuBundle",
"Oro\\Bundle\\CustomerBundle\\": "src/Oro/Bundle/CustomerBundle",
"Oro\\Bundle\\FrontendAttachmentBundle\\": "src/Oro/Bundle/FrontendAttachmentBundle",
"Oro\\Bundle\\FrontendBundle\\": "src/Oro/Bundle/FrontendBundle",
"Oro\\Bundle\\FrontendImportExportBundle\\": "src/Oro/Bundle/FrontendImportExportBundle",
"Oro\\Bundle\\StyleBookBundle\\": "src/Oro/Bundle/StyleBookBundle",
"Oro\\Bundle\\WebsiteBundle\\": "src/Oro/Bundle/WebsiteBundle"
},
"exclude-from-classmap": ["/Tests/"]
}
}