-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
36 lines (31 loc) · 907 Bytes
/
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
{
"name": "ticketpark/image-bundle",
"type": "symfony-bundle",
"description": "This bundle assists in manipulating images",
"keywords": ["image", "image manipulation"],
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Ticketpark contributors and others",
"homepage": "https://github.com/Ticketpark/TicketparkImageBundle/contributors"
}
],
"require": {
"php": ">=5.3.2",
"imagine/Imagine": "0.5.*",
"ticketpark/file-bundle": "~0.3",
"symfony/dependency-injection": "~2.3",
"symfony/http-foundation": "~2.3"
},
"require-dev": {
"twig/twig": ">=1.0,<2.0-dev"
},
"suggest": {
"twig/twig": ">=1.0,<2.0-dev"
},
"autoload": {
"psr-0": { "Ticketpark\\ImageBundle": "" }
},
"target-dir": "Ticketpark/ImageBundle"
}