Heimdall/vendor/webmozart/assert/composer.json

44 lines
956 B
JSON
Raw Normal View History

2018-02-01 20:01:12 +00:00
{
"name": "webmozart/assert",
"description": "Assertions to validate method input/output with nice error messages.",
2022-06-29 12:20:08 +00:00
"license": "MIT",
2019-01-18 18:33:28 +00:00
"keywords": [
"assert",
"check",
"validate"
],
2018-02-01 20:01:12 +00:00
"authors": [
{
"name": "Bernhard Schussek",
"email": "bschussek@gmail.com"
}
],
"require": {
2022-03-10 11:54:29 +00:00
"php": "^7.2 || ^8.0",
2022-06-29 12:20:08 +00:00
"ext-ctype": "*"
2022-03-10 11:54:29 +00:00
},
2018-02-01 20:01:12 +00:00
"require-dev": {
2022-03-10 11:54:29 +00:00
"phpunit/phpunit": "^8.5.13"
2018-02-01 20:01:12 +00:00
},
2022-06-29 12:20:08 +00:00
"conflict": {
"phpstan/phpstan": "<0.12.20",
"vimeo/psalm": "<4.6.1 || 4.6.2"
2019-01-18 18:33:28 +00:00
},
2018-02-01 20:01:12 +00:00
"autoload": {
"psr-4": {
"Webmozart\\Assert\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
2022-03-10 11:54:29 +00:00
"Webmozart\\Assert\\Tests\\": "tests/",
"Webmozart\\Assert\\Bin\\": "bin/src"
2018-02-01 20:01:12 +00:00
}
2022-06-29 12:20:08 +00:00
},
"extra": {
"branch-alias": {
"dev-master": "1.10-dev"
}
2018-02-01 20:01:12 +00:00
}
}