-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
49 lines (46 loc) · 1.47 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
43
44
45
46
47
48
49
{
"name": "icomefromthenet/migration",
"description": "Database schema migrations using Doctrine DBAL and Symfony2 components",
"keywords": ["database", "schema","DBAL","migrations"],
"homepage": "https://github.com/icomefromthenet/Migrations",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Lewis Dyer",
"email": "[email protected]",
"homepage": "http://www.icomefromthenet.com"
}
],
"config": {
},
"require-dev": {
"phpunit/phpunit": "~5.0",
"phpunit/dbunit": ">=1.2",
"psy/psysh" :"@stable",
"etsy/phpunit-extensions": "0.7.0",
"sebastian/exporter": "~1.0"
},
"require": {
"php": ">=5.3.0",
"monolog/monolog" : "~1.4",
"symfony/filesystem" : "^2.8",
"symfony/class-loader" : "^2.8",
"symfony/config" : "^2.8",
"symfony/console" : "^2.8",
"symfony/event-dispatcher" : "^2.8",
"symfony/finder" : "^2.8",
"symfony/yaml" : "^2.8",
"twig/twig" : "~1.11",
"pimple/pimple" : "1.0.*",
"doctrine/dbal" : "^2.5",
"ext-spl" : "*",
"ext-pcre" : "*"
},
"autoload": {
"psr-0": {"Migration": "src/"}
},
"bin": [
"bin/migrate.php"
]
}