From a77e2ee672ca6195192518d779f3057c3a31c116 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 7 Feb 2022 10:01:03 +0100 Subject: update to 6.2.0 update bundled bartlett/php-compatinfo-db to 4.0.0 --- composer.json | 45 +++++++++++++++------------------------------ 1 file changed, 15 insertions(+), 30 deletions(-) (limited to 'composer.json') diff --git a/composer.json b/composer.json index 7fe0421..ec4acb8 100644 --- a/composer.json +++ b/composer.json @@ -10,29 +10,28 @@ "issues": "https://github.com/llaville/php-compatinfo/issues" }, "require": { - "php": "^7.4|^8.0", + "php": "^7.4 || ^8.0", "ext-json": "*", "ext-libxml": "*", "ext-pcre": "*", "ext-spl": "*", - "bartlett/php-compatinfo-db": ">=3.17 <3.19", + "bartlett/php-compatinfo-db": "^4.0", "bartlett/sarif-php-sdk": "^1.0", "composer-runtime-api": "^2.0", "doctrine/collections": "^1.4", "nikic/php-parser": "^4.10", "psr/log": "^1.0", - "ramsey/uuid": "^3.9|^4.0", - "symfony/config": "^4.4|^5.0", - "symfony/console": "^4.4|^5.0", - "symfony/event-dispatcher": "^4.4|^5.0", - "symfony/finder": "^4.4|^5.0", - "symfony/dependency-injection": "^4.4|^5.0", - "symfony/serializer": "^4.4|^5.0", - "symfony/stopwatch": "^4.4|^5.0" + "ramsey/uuid": "^3.9 || ^4.0", + "symfony/config": "^4.4 || ^5.0", + "symfony/console": "^4.4 || ^5.0", + "symfony/event-dispatcher": "^4.4 || ^5.0", + "symfony/finder": "^4.4 || ^5.0", + "symfony/dependency-injection": "^4.4 || ^5.0", + "symfony/serializer": "^4.4 || ^5.0", + "symfony/stopwatch": "^4.4 || ^5.0" }, "require-dev": { - "bartlett/graph-uml": "^1.2", - "composer/composer": "^2.0" + "bartlett/graph-uml": "^1.2" }, "authors": [ { @@ -60,23 +59,6 @@ "Bartlett\\CompatInfo\\Tests\\": "tests/" } }, - "scripts": { - "setup-database": [ - "mkdir -p ${HOME}/.cache/bartlett/ && touch ${HOME}/.cache/bartlett/compatinfo-db.sqlite", - "export DATABASE_URL=sqlite:///${HOME}/.cache/bartlett/compatinfo-db.sqlite" - ], - "post-install-cmd": [ - "@setup-database", - "vendor/bin/doctrine orm:schema-tool:create", - "vendor/bartlett/php-compatinfo-db/bin/compatinfo-db db:init" - ], - "post-update-cmd": [ - "@setup-database" - ] - }, - "scripts-descriptions": { - "setup-database": "Initializes SQLite database from JSON files in data directory." - }, "minimum-stability": "dev", "prefer-stable": true, "config": { @@ -90,6 +72,9 @@ } }, "extra": { - "enable-patching": true + "enable-patching": true, + "branch-alias": { + "dev-master": "6.2.x-dev" + } } } -- cgit