-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
37 lines (37 loc) · 1.02 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
{
"name": "oro/calendar-bundle",
"type": "symfony-bundle",
"description": "Calendar bundle for OroPlatform-based applications.\nSee https://doc.oroinc.com/user/back-office/activities/calendar-events/ for more information.",
"homepage": "https://github.com/oroinc/OroCalendarBundle.git",
"keywords": ["Oro","OroPlatform","OroCRM","Calendar"],
"license": "MIT",
"authors": [
{
"name": "Oro, Inc",
"homepage": "https://oroinc.com/"
}
],
"require": {
"oro/platform": "6.1.*"
},
"autoload": {
"psr-4": { "Oro\\Bundle\\CalendarBundle\\": "" },
"exclude-from-classmap": ["/Tests/"]
},
"repositories": {
"oro": {
"type": "composer",
"url": "https://packagist.oroinc.com"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"npm": {
"fullcalendar": "3.4.0"
},
"branch-alias": {
"dev-master": "6.1-dev"
}
}
}