-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
33 lines (33 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
{
"name": "doctrine-dbal-util/dbal-testing-util",
"type": "library",
"description": "Utilities to build tests using doctrine/dbal connection",
"keywords": ["dbal", "database", "persistence", "test", "snowyowl"],
"homepage": "https://github.com/doctrine-dbal-util/dbal-testing-util",
"license": "MIT",
"authors": [
{"name": "Jean-Bernard Addor"},
{"name": "Michael Williams", "email": "michael@whizdevelopment.com"},
{"name": "Pablo Díez", "email": "pablodip@gmail.com"}
],
"require": {
"php": ">=5.3",
"doctrine/dbal": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "~4 | ~5 | ~6"
},
"suggest": {
},
"autoload": {
"psr-4": { "DoctrineDbalUtil\\DbalTestingUtil\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "2.5.x-dev"
}
},
"archive": {
"exclude": ["!vendor", "tests", "*phpunit.xml", ".travis.yml", "build.xml", "build.properties", "composer.phar"]
}
}