From cf16460daef12e6d2346bfeb0bcdf3282fbd0cea Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 8 Jul 2024 09:04:26 +0200 Subject: update to 5.3.0 raise dependency on PHP 7.1 --- composer.json | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) (limited to 'composer.json') diff --git a/composer.json b/composer.json index fcacd40..8c32267 100644 --- a/composer.json +++ b/composer.json @@ -27,18 +27,13 @@ } ], "require": { - "php": ">=5.3.3" + "php": ">=7.1" }, "require-dev": { "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1", "json-schema/json-schema-test-suite": "1.2.0", "phpunit/phpunit": "^4.8.35" }, - "extra": { - "branch-alias": { - "dev-master": "5.0.x-dev" - } - }, "autoload": { "psr-4": { "JsonSchema\\": "src/JsonSchema/" @@ -67,10 +62,10 @@ "bin/validate-json" ], "scripts": { - "coverage": "phpunit --coverage-text", - "style-check": "php-cs-fixer fix --dry-run --verbose --diff", - "style-fix": "php-cs-fixer fix --verbose", - "test": "phpunit", - "testOnly": "phpunit --colors --filter" + "coverage": "@php phpunit --coverage-text", + "style-check": "@php php-cs-fixer fix --dry-run --verbose --diff", + "style-fix": "@php php-cs-fixer fix --verbose", + "test": "@php phpunit", + "testOnly": "@php phpunit --colors --filter" } } -- cgit