Files
curly/composer.json
2022-12-10 02:12:42 +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.29.0",
"phpstan/phpstan": "1.9.2",
"phpunit/phpunit": "9.5.27",
"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=7",
"test": "vendor/bin/phpunit --colors --verbose"
}
}