-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
36 lines (36 loc) · 975 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
32
33
34
35
36
{
"name": "okvpn/migration-bundle",
"type": "symfony-bundle",
"description": "Database Schema migrations using Doctrine",
"keywords": ["Migration", "Schema", "Symfony Migration"],
"homepage": "https://github.com/okvpn/migration-bundle",
"license": "MIT",
"authors": [
{
"name": "Uladzimir Tsykun",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0",
"symfony/framework-bundle": "~2.7|~3.0|~4.0",
"symfony/doctrine-bridge": "~2.7|~3.0|~4.0",
"doctrine/dbal": "^2.1",
"doctrine/orm": "^2.1"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"symfony/twig-bundle": "~3.4|~4.2"
},
"autoload": {
"psr-4": { "Okvpn\\Bundle\\MigrationBundle\\": "src" }
},
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
}
},
"conflict": {
"twig/twig": "<1.34|<2.4,>=2"
}
}