summaryrefslogtreecommitdiff
path: root/vendor/beberlei/assert/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/beberlei/assert/composer.json')
-rw-r--r--vendor/beberlei/assert/composer.json14
1 files changed, 11 insertions, 3 deletions
diff --git a/vendor/beberlei/assert/composer.json b/vendor/beberlei/assert/composer.json
index 3dd5e7451..1485a0084 100644
--- a/vendor/beberlei/assert/composer.json
+++ b/vendor/beberlei/assert/composer.json
@@ -23,12 +23,17 @@
"sort-packages": true
},
"require": {
- "php": "^7"
+ "php": "^7.0 || ^8.0",
+ "ext-simplexml": "*",
+ "ext-mbstring": "*",
+ "ext-ctype": "*",
+ "ext-json": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "*",
- "phpstan/phpstan-shim": "*",
- "phpunit/phpunit": ">=6.0.0 <8"
+ "phpstan/phpstan": "*",
+ "phpunit/phpunit": ">=6.0.0",
+ "yoast/phpunit-polyfills": "^0.1.0"
},
"autoload": {
"psr-4": {
@@ -52,5 +57,8 @@
"assert:cs-fix": "php-cs-fixer fix . -vvv || true",
"assert:sa-code": "vendor/bin/phpstan analyse --configuration=phpstan-code.neon --no-progress --ansi -l 7 bin lib",
"assert:sa-tests": "vendor/bin/phpstan analyse --configuration=phpstan-tests.neon --no-progress --ansi -l 7 tests"
+ },
+ "suggest": {
+ "ext-intl": "Needed to allow Assertion::count(), Assertion::isCountable(), Assertion::minCount(), and Assertion::maxCount() to operate on ResourceBundles"
}
}