endtoend-test-psl/composer.json
2021-03-02 11:52:20 +01:00

75 lines
1.7 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.5",
"friendsofphp/php-cs-fixer": "^2.18",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.5",
"vimeo/psalm": "dev-master"
},
"autoload": {
"psr-4": {
"Psl\\Integration\\": "integration"
},
"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
},
"extra": {
"psalm": {
"pluginClass": "Psl\\Integration\\Psalm\\Plugin"
},
"thanks": {
"name": "hhvm/hsl",
"url": "https://github.com/hhvm/hsl"
}
}
}