forked from michaelmoussa/doctrine-qbmocker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 1.02 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
{
"name": "michaelmoussa/doctrine-qbmocker",
"description": "A helper library for mocking Doctrine query builders",
"homepage": "http://github.com/michaelmoussa/doctrine-qbmocker",
"license": "MIT",
"authors": [
{
"name": "Michael Moussa",
"email": "[email protected]"
}
],
"require": {
"php": "^5.4",
"phpunit/phpunit": "^3.7.0 | ^4.2.0"
},
"require-dev": {
"doctrine/mongodb": "^1.2",
"doctrine/orm": "^2.5",
"jmikola/geojson": "^1.0",
"squizlabs/php_codesniffer": "^2.3",
"satooshi/php-coveralls": "^0.6.1"
},
"suggest": {
"doctrine/mongodb-odm": "Allows for simplified mocking of Doctrine ODM MongoDB query builders.",
"jmikola/geojson": "Required for doctrine/mongodb-odm.",
"doctrine/orm": "Allows for simplified mocking of Doctrine ORM query builders."
},
"autoload": {
"psr-4": {
"MMoussa\\Doctrine\\": ["src/", "test/"]
}
}
}