summaryrefslogtreecommitdiff
path: root/vendor/beberlei/assert/composer.json
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-11-15 18:33:35 +0300
committerAndrew Dolgov <[email protected]>2021-11-15 18:33:35 +0300
commit4c37fa4b41b0cab50a4fc192e9120042dbe36872 (patch)
treed7ca7cbd65de0cea9806870c8fb646ed15d978ae /vendor/beberlei/assert/composer.json
parent109b702ed0cd31a0dc8466b8127882d263705d8d (diff)
update phpstan to 1.1.2; update php-qrcode to 3.4.1
Diffstat (limited to 'vendor/beberlei/assert/composer.json')
-rw-r--r--vendor/beberlei/assert/composer.json29
1 files changed, 11 insertions, 18 deletions
diff --git a/vendor/beberlei/assert/composer.json b/vendor/beberlei/assert/composer.json
index e11870470..3dd5e7451 100644
--- a/vendor/beberlei/assert/composer.json
+++ b/vendor/beberlei/assert/composer.json
@@ -19,6 +19,17 @@
"assertion",
"validation"
],
+ "config": {
+ "sort-packages": true
+ },
+ "require": {
+ "php": "^7"
+ },
+ "require-dev": {
+ "friendsofphp/php-cs-fixer": "*",
+ "phpstan/phpstan-shim": "*",
+ "phpunit/phpunit": ">=6.0.0 <8"
+ },
"autoload": {
"psr-4": {
"Assert\\": "lib/Assert"
@@ -35,29 +46,11 @@
"tests/Assert/Tests/Fixtures/functions.php"
]
},
- "config": {
- "sort-packages": true
- },
- "require": {
- "php": "^7",
- "ext-simplexml": "*",
- "ext-mbstring": "*",
- "ext-ctype": "*",
- "ext-json": "*"
- },
- "require-dev": {
- "friendsofphp/php-cs-fixer": "*",
- "phpstan/phpstan-shim": "*",
- "phpunit/phpunit": ">=6.0.0 <8"
- },
"scripts": {
"assert:generate-docs": "php bin/generate_method_docs.php",
"assert:cs-lint": "php-cs-fixer fix --diff -vvv --dry-run",
"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"
}
}