From e8e5f6c5a59283b6a41df237856aa7c4e8a2cdb4 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 27 Mar 2019 10:41:11 +0100 Subject: v2.0.0 --- composer.json | 37 +++++++++++++++++++++++-------------- 1 file changed, 23 insertions(+), 14 deletions(-) (limited to 'composer.json') diff --git a/composer.json b/composer.json index 3217b5c..d9cf727 100644 --- a/composer.json +++ b/composer.json @@ -1,8 +1,8 @@ { "name": "doctrine/migrations", "type": "library", - "description": "Database Schema migrations using Doctrine DBAL", - "keywords": ["migrations", "database"], + "description": "PHP Doctrine Migrations project offer additional functionality on top of the database abstraction layer (DBAL) for versioning your database schema and easily deploying changes to it. It is a very easy to use and a powerful tool.", + "keywords": ["php", "database", "migrations", "dbal"], "homepage": "https://www.doctrine-project.org/projects/migrations.html", "license": "MIT", "authors": [ @@ -12,18 +12,25 @@ ], "require": { "php": "^7.1", - "doctrine/dbal": "~2.6", - "symfony/console": "~3.3|^4.0", - "ocramius/proxy-manager": "^1.0|^2.0" + "doctrine/dbal": "^2.6", + "ocramius/package-versions": "^1.3", + "ocramius/proxy-manager": "^2.0.2", + "symfony/console": "^3.4||^4.0", + "symfony/stopwatch": "^3.4||^4.0" }, "require-dev": { - "doctrine/orm": "~2.5", - "symfony/yaml": "~3.3|^4.0", - "phpunit/phpunit": "~7.0", - "doctrine/coding-standard": "^1.0", - "jdorn/sql-formatter": "~1.1", + "ext-pdo_sqlite": "*", + "doctrine/coding-standard": "^5.0", + "doctrine/orm": "^2.6", + "jdorn/sql-formatter": "^1.1", "mikey179/vfsStream": "^1.6", - "squizlabs/php_codesniffer": "^3.0" + "phpstan/phpstan": "^0.10", + "phpstan/phpstan-deprecation-rules": "^0.10", + "phpstan/phpstan-phpunit": "^0.10", + "phpstan/phpstan-strict-rules": "^0.10", + "phpunit/phpunit": "^7.0", + "symfony/process": "^3.4||^4.0", + "symfony/yaml": "^3.4||^4.0" }, "suggest": { "jdorn/sql-formatter": "Allows to generate formatted SQL with the diff command.", @@ -31,18 +38,20 @@ }, "autoload": { "psr-4": { - "Doctrine\\DBAL\\Migrations\\": "lib/Doctrine/DBAL/Migrations", "Doctrine\\Migrations\\": "lib/Doctrine/Migrations" } }, "autoload-dev": { "psr-4": { - "Doctrine\\DBAL\\Migrations\\Tests\\": "tests/Doctrine/DBAL/Migrations/Tests" + "Doctrine\\Migrations\\Tests\\": "tests/Doctrine/Migrations/Tests" } }, + "config": { + "sort-packages": true + }, "extra": { "branch-alias": { - "dev-master": "v1.8.x-dev" + "dev-master": "2.0.x-dev" } }, "bin": [ -- cgit