Upgrade framework

This commit is contained in:
2023-11-14 16:54:35 +01:00
parent 1648a5cd42
commit 4fcf6fffcc
10548 changed files with 693138 additions and 466698 deletions

View File

@@ -1,8 +1,12 @@
{
"name": "webmozart/assert",
"description": "Assertions to validate method input/output with nice error messages.",
"keywords": ["assert", "check", "validate"],
"license": "MIT",
"keywords": [
"assert",
"check",
"validate"
],
"authors": [
{
"name": "Bernhard Schussek",
@@ -10,11 +14,15 @@
}
],
"require": {
"php": "^5.3.3 || ^7.0"
"php": "^7.2 || ^8.0",
"ext-ctype": "*"
},
"require-dev": {
"phpunit/phpunit": "^4.6",
"sebastian/version": "^1.0.1"
"phpunit/phpunit": "^8.5.13"
},
"conflict": {
"phpstan/phpstan": "<0.12.20",
"vimeo/psalm": "<4.6.1 || 4.6.2"
},
"autoload": {
"psr-4": {
@@ -23,12 +31,13 @@
},
"autoload-dev": {
"psr-4": {
"Webmozart\\Assert\\Tests\\": "tests/"
"Webmozart\\Assert\\Tests\\": "tests/",
"Webmozart\\Assert\\Bin\\": "bin/src"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.3-dev"
"dev-master": "1.10-dev"
}
}
}