-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
31 lines (31 loc) · 942 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
{
"name": "doctrine-dbal-util/connection",
"type": "library",
"description": "Traits and Methods to Query on a Doctrine DBAL Connection",
"keywords": ["dbal", "database", "persistence", "queryobject", "snowyowl"],
"homepage": "https://github.com/doctrine-dbal-util/connection",
"license": "MIT",
"authors": [
{"name": "Jean-Bernard Addor"},
{"name": "Community", "homepage": "https://github.com/doctrine-dbal-util/connection"}
],
"require": {
"php": "^5.4 || ^7.0",
"doctrine/dbal": "^2.0"
},
"require-dev": {
},
"suggest": {
},
"autoload": {
"psr-4": { "DoctrineDbalUtil\\Connection\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
},
"archive": {
"exclude": ["!vendor", "tests", "*phpunit.xml", ".travis.yml", "build.xml", "build.properties", "composer.phar"]
}
}