diff options
author | Remi Collet <remi@remirepo.net> | 2019-01-03 16:13:39 +0100 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2019-01-03 16:13:39 +0100 |
commit | c0d5832ff259a49e8c0951fb391dea8026fa121b (patch) | |
tree | 2feee58c69c9330d62e57dd21bb2c40faa6076f0 /composer.json | |
parent | 28ef1c9cfa570021547a286f3a2224a7142c8551 (diff) |
downgrade to 1.5.0v1.5
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/composer.json b/composer.json index 3217b5c..456a9b9 100644 --- a/composer.json +++ b/composer.json @@ -3,36 +3,36 @@ "type": "library", "description": "Database Schema migrations using Doctrine DBAL", "keywords": ["migrations", "database"], - "homepage": "https://www.doctrine-project.org/projects/migrations.html", - "license": "MIT", + "homepage": "http://www.doctrine-project.org", + "license": "LGPL-2.1", "authors": [ {"name": "Benjamin Eberlei", "email": "kontakt@beberlei.de"}, {"name": "Jonathan Wage", "email": "jonwage@gmail.com"}, {"name": "Michael Simonson", "email": "contact@mikesimonson.com" } ], "require": { - "php": "^7.1", - "doctrine/dbal": "~2.6", - "symfony/console": "~3.3|^4.0", + "php": "^5.5|^7.0", + "doctrine/dbal": "~2.2", + "symfony/yaml": "~2.3|~3.0", + "symfony/console": "~2.3|~3.0", "ocramius/proxy-manager": "^1.0|^2.0" }, "require-dev": { - "doctrine/orm": "~2.5", - "symfony/yaml": "~3.3|^4.0", - "phpunit/phpunit": "~7.0", - "doctrine/coding-standard": "^1.0", + "doctrine/orm": "2.*", + "phpunit/phpunit": "~4.7", + "satooshi/php-coveralls": "^1.0", + "doctrine/coding-standard": "dev-master", + "mockery/mockery": "^0.9.4", + "johnkary/phpunit-speedtrap": "~1.0@dev", "jdorn/sql-formatter": "~1.1", - "mikey179/vfsStream": "^1.6", - "squizlabs/php_codesniffer": "^3.0" + "mikey179/vfsStream": "^1.6" }, "suggest": { - "jdorn/sql-formatter": "Allows to generate formatted SQL with the diff command.", - "symfony/yaml": "Allows the use of yaml for migration configuration files." + "jdorn/sql-formatter": "Allows to generate formatted SQL with the diff command." }, "autoload": { "psr-4": { - "Doctrine\\DBAL\\Migrations\\": "lib/Doctrine/DBAL/Migrations", - "Doctrine\\Migrations\\": "lib/Doctrine/Migrations" + "Doctrine\\DBAL\\Migrations\\": "lib/Doctrine/DBAL/Migrations" } }, "autoload-dev": { @@ -42,7 +42,7 @@ }, "extra": { "branch-alias": { - "dev-master": "v1.8.x-dev" + "dev-master": "v1.6.x-dev" } }, "bin": [ |