diff options
author | Remi Collet <remi@remirepo.net> | 2024-07-08 09:04:26 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2024-07-08 09:04:26 +0200 |
commit | cf16460daef12e6d2346bfeb0bcdf3282fbd0cea (patch) | |
tree | 22e02c308285bf7414070a204c4a2693d448a499 /composer.json | |
parent | d36dd4c77ea53076981a1b9727117e301869945a (diff) |
raise dependency on PHP 7.1
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" } } |