forked from doctrine/migrations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (41 loc) · 1.1 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
40
41
42
{
"name": "doctrine/migrations",
"type": "library",
"description": "Database Schema migrations using Doctrine DBAL",
"keywords": ["migrations", "database"],
"homepage": "http://www.doctrine-project.org",
"license": "LGPL-2.1",
"authors": [
{"name": "Benjamin Eberlei", "email": "[email protected]"},
{"name": "Jonathan Wage", "email": "[email protected]"}
],
"require": {
"php": ">=5.3.2",
"doctrine/dbal": "~2.0",
"symfony/yaml": "~2.3",
"symfony/console": "~2.3"
},
"require-dev": {
"doctrine/orm": "2.*",
"phpunit/phpunit": "~4.0",
"satooshi/php-coveralls": "0.6.*",
"doctrine/coding-standard": "dev-master",
"mockery/mockery": "^0.9.4"
},
"conflict": {
"doctrine/orm": "<2.4"
},
"suggest": {
"symfony/console": "to run the migration from the console"
},
"autoload": {
"psr-0": {
"Doctrine\\DBAL\\Migrations": "lib"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}