-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
34 lines (34 loc) · 1.14 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": "pluess/doctrine-trx-bundle",
"type": "symfony-bundle",
"description": "This bundle provides container managed transactoins in controller actions.",
"keywords": ["transaction", "doctrine"],
"homepage": "http://www.pluess-production.ch",
"license": "MIT",
"authors": [
{
"name": "Ernst Pluess",
"email": "ernst.pluess@pluess-production.ch"
}
],
"require": {
"php": ">=5.3.3",
"symfony/symfony": "2.1.*",
"doctrine/orm": ">=2.2.3,<2.4-dev",
"doctrine/doctrine-bundle": "1.1.*",
"twig/extensions": "1.0.*@dev",
"symfony/assetic-bundle": "2.1.*",
"symfony/swiftmailer-bundle": "2.1.*",
"symfony/monolog-bundle": "2.1.*",
"sensio/distribution-bundle": "2.1.*",
"sensio/framework-extra-bundle": "2.1.*",
"sensio/generator-bundle": "2.1.*",
"jms/security-extra-bundle": "1.2.*",
"jms/di-extra-bundle": "1.1.*",
"kriswallsmith/assetic": "1.1.*@dev"
},
"autoload": {
"psr-0": { "Pluess\\DoctrineTrxBundle": "" }
},
"target-dir": "Pluess/DoctrineTrxBundle"
}