From c0d5832ff259a49e8c0951fb391dea8026fa121b Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 3 Jan 2019 16:13:39 +0100 Subject: downgrade to 1.5.0 --- composer.json | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) (limited to 'composer.json') 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": [ -- cgit