Files
curly/composer.json
renovate[bot] cd19966459 chore(deps): update dependency phpstan/phpstan to v1.10.9
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-03-31 01:21:56 +00:00

55 lines
1.1 KiB
JSON

{
"name": "ivuorinen/curly",
"description": "HTTP Curl client capable of NTLM authentication",
"license": "MIT",
"type": "project",
"keywords": [
"http",
"curl",
"ntlm"
],
"authors": [
{
"name": "Ismo Vuorinen",
"homepage": "https://github.com/ivuorinen"
}
],
"require": {
"php": "^8.1",
"ext-curl": "*",
"ext-zlib": "*",
"league/uri": "6.8.0"
},
"require-dev": {
"ergebnis/composer-normalize": "2.30.2",
"phpstan/phpstan": "1.10.9",
"phpunit/phpunit": "10.0.19",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"ivuorinen\\Curly\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ivuorinen\\Curly\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
},
"scripts": {
"post-install-cmd": [
"@composer normalize || true"
],
"post-update-cmd": [
"@composer normalize || true"
],
"check": "vendor/bin/phpstan analyse src tests --level=5 --xdebug",
"test": "vendor/bin/phpunit --colors"
}
}