forked from hackzilla-project/TicketBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 1.11 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
{
"name": "hackzilla/ticket-bundle",
"description": "This Bundle provides ticketing functionality for Symfony2 applications. Multilingual capable",
"keywords": ["ticket", "ticketing", "help desk", "helpdesk", "support", "multilingual", "english", "french", "russian", "german", "spanish"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Daniel Platt",
"email": "[email protected]",
"homepage": "http://www.hackzilla.org",
"role": "Developer"
}
],
"require": {
"php": ">=5.3.3",
"symfony/symfony": "~2.3",
"doctrine/orm": "~2.2,>=2.2.3",
"doctrine/doctrine-bundle": "~1.2",
"knplabs/knp-paginator-bundle": "~2.3"
},
"require-dev": {
"symfony/form": "~2.3"
},
"suggest": {
"hackzilla/bootstrap-bundle": "used to define the layout (v3)"
},
"autoload": {
"psr-4": {
"Hackzilla\\Bundle\\TicketBundle\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}