-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
39 lines (39 loc) · 1.01 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
39
{
"name": "dxi/doctrine-extension-bundle",
"type": "library",
"description": "DXI Doctrine Extensions",
"keywords": ["enum", "doctrine", "mapping", "orm", "odm", "php-enum"],
"licence": "MIT",
"authors": [
{
"name": "Daniel Bojdo",
"email": "daniel.bojdo@dxi.eu"
}
],
"require": {
"php": ">=5.3.3",
"dxi/doctrine-extension": "~1.0"
},
"require-dev": {
"doctrine/doctrine-bundle": "~1.3",
"stof/doctrine-extensions-bundle": "1.2.x-dev",
"doctrine/mongodb-odm-bundle": "3.1.x-dev",
"doctrine/orm": "~2.4",
"marc-mabe/php-enum": "~2.0",
"webit/test-tools": "0.*",
"behat/behat": "~3.0",
"phpunit/phpunit": "~4.2"
},
"autoload": {
"psr-4": {
"Dxi\\DoctrineExtensionBundle\\": "src/"
}
},
"prefer-stable": true,
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}