From aa84381e35771ae6e83ec334b2085c5eaf4b342c Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 29 Aug 2019 13:43:52 +0200 Subject: - update to 0.11.1 - raise dependency on symfony 3.4 - use phpunit 7 --- composer.json | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) (limited to 'composer.json') diff --git a/composer.json b/composer.json index 8fedd79..2ceebbb 100644 --- a/composer.json +++ b/composer.json @@ -5,7 +5,7 @@ "keywords": ["phinx", "migrations", "database", "db", "database migrations"], "homepage": "https://phinx.org", "license": "MIT", - "version": "0.10.8", + "version": "0.11.1", "authors": [{ "name": "Rob Morgan", "email": "robbym@gmail.com", @@ -14,7 +14,7 @@ }, { "name": "Woody Gilk", "email": "woody.gilk@gmail.com", - "homepage": "http://shadowhand.me", + "homepage": "https://shadowhand.me", "role": "Developer" }, { "name": "Richard Quadling", @@ -22,18 +22,21 @@ "role": "Developer" }, { "name": "CakePHP Community", + "role": "Developer", "homepage": "https://github.com/cakephp/phinx/graphs/contributors" }], "require": { "php": ">=5.6", "cakephp/collection": "^3.6", + "cakephp/core": "^3.6", "cakephp/database": "^3.6", - "symfony/console": "^2.8|^3.0|^4.0", - "symfony/config": "^2.8|^3.0|^4.0", - "symfony/yaml": "^2.8|^3.0|^4.0" + "cakephp/datasource": "^3.6", + "symfony/console": "^3.4|^4.0", + "symfony/config": "^3.4|^4.0", + "symfony/yaml": "^3.4|^4.0" }, "require-dev": { - "phpunit/phpunit": ">=5.7,<7.0", + "phpunit/phpunit": ">=5.7,<8.0", "sebastian/comparator": ">=1.2.3", "cakephp/cakephp-codesniffer": "^3.0" }, @@ -52,8 +55,8 @@ "@test", "@cs-check" ], - "cs-check": "phpcs --colors -p --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests ./app", - "cs-fix": "phpcbf --colors --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests ./app", + "cs-check": "phpcs --colors -p --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/ tests/ app/", + "cs-fix": "phpcbf --colors --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/ tests/ app/", "test": "phpunit --colors=always" }, "bin": ["bin/phinx"] -- cgit