diff options
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 17 |
1 files changed, 6 insertions, 11 deletions
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" } } |