mirror of
https://github.com/danog/endtoend-test-psl.git
synced 2024-11-26 20:34:59 +01:00
57 lines
1.3 KiB
JSON
57 lines
1.3 KiB
JSON
{
|
|
"name": "azjezz/psl",
|
|
"description": "PHP Standard Library",
|
|
"type": "library",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "azjezz",
|
|
"email": "azjezz@protonmail.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^7.4",
|
|
"ext-bcmath": "*",
|
|
"ext-mbstring": "*",
|
|
"ext-json": "*"
|
|
},
|
|
"require-dev": {
|
|
"vimeo/psalm": "dev-master",
|
|
"phpunit/phpunit": "^8.5",
|
|
"friendsofphp/php-cs-fixer": "^2.16",
|
|
"php-coveralls/php-coveralls": "^2.2",
|
|
"roave/security-advisories": "dev-master"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Psl\\": "src/Psl"
|
|
},
|
|
"files": [
|
|
"src/bootstrap.php"
|
|
]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Psl\\Tests\\": "tests/Psl"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"cs:fix": "php-cs-fixer fix",
|
|
"cs:check": "php-cs-fixer fix --dry-run -vvv",
|
|
"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
|
|
}
|
|
}
|