mirror of
https://github.com/danog/endtoend-test-psl.git
synced 2024-11-30 04:39:48 +01:00
b6d2cdb8f7
Updates the requirements on [vimeo/psalm](https://github.com/vimeo/psalm) to permit the latest version. - [Release notes](https://github.com/vimeo/psalm/releases) - [Commits](https://github.com/vimeo/psalm/compare/4.2.0...4.3.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
67 lines
1.5 KiB
JSON
67 lines
1.5 KiB
JSON
{
|
|
"name": "azjezz/psl",
|
|
"description": "PHP Standard Library",
|
|
"type": "library",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "azjezz",
|
|
"email": "azjezz@protonmail.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^7.4 || ^8.0",
|
|
"ext-bcmath": "*",
|
|
"ext-json": "*",
|
|
"ext-mbstring": "*",
|
|
"ext-sodium": "*",
|
|
"ext-intl": "*"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^9.4",
|
|
"php-coveralls/php-coveralls": "^2.4",
|
|
"friendsofphp/php-cs-fixer": "^2.16",
|
|
"roave/security-advisories": "dev-master",
|
|
"squizlabs/php_codesniffer": "^3.5",
|
|
"vimeo/psalm": "^4.3"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Psl\\": "src/Psl"
|
|
},
|
|
"files": [
|
|
"src/bootstrap.php"
|
|
]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Psl\\Tests\\": "tests/Psl"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"cs:fix": [
|
|
"phpcbf",
|
|
"php-cs-fixer fix"
|
|
],
|
|
"cs:check": [
|
|
"phpcs",
|
|
"php-cs-fixer fix --dry-run"
|
|
],
|
|
"type:check": "psalm",
|
|
"type:coverage": "psalm --shepherd",
|
|
"test:unit": "phpunit",
|
|
"code:coverage": "php-coveralls -v",
|
|
"security:analysis": "psalm --taint-analysis",
|
|
"check": [
|
|
"@cs:check",
|
|
"@type:check",
|
|
"@security:analysis",
|
|
"@test:unit"
|
|
]
|
|
},
|
|
"config": {
|
|
"process-timeout": 1200,
|
|
"sort-packages": true
|
|
}
|
|
}
|