-
Notifications
You must be signed in to change notification settings - Fork 60
/
composer.json
34 lines (34 loc) · 1.07 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
{
"name": "adesigns/calendar-bundle",
"type": "symfony-bundle",
"description": "This bundle allows you to integrate the jQuery FullCalendar plugin into your Symfony2 application.",
"keywords": ["calendar", "fullcalendar", "jquery calendar"],
"homepage": "http://github.com/adesigns/calendar-bundle",
"license": "MIT",
"authors": [
{
"name": "Mike Yudin",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"symfony/twig-bundle": "~2.1|~3.0|~4.0",
"symfony/framework-bundle": "~2.1|~3.0|~4.0",
"friendsofsymfony/jsrouting-bundle": "~1.1|~2.0",
"doctrine/collections": "^1.0"
},
"require-dev": {
"phpunit/phpunit" : "3.7.*",
"symfony/phpunit-bridge": "^2.7|~3.0",
"symfony/debug": "~2.3|~3.0",
"symfony/browser-kit" : "~2.3|~3.0",
"symfony/finder": "~2.3|~3.0"
},
"autoload": {
"psr-0": {
"ADesigns\\CalendarBundle": ""
}
},
"target-dir": "ADesigns/CalendarBundle"
}