mirror of
https://github.com/ivuorinen/curly.git
synced 2026-01-26 11:33:59 +00:00
55 lines
1.1 KiB
JSON
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",
|
|
"email": "ismo@ivuorinen.net"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=7.1 || ^8",
|
|
"ext-curl": "*",
|
|
"ext-zlib": "*",
|
|
"league/uri": "6.6.0"
|
|
},
|
|
"require-dev": {
|
|
"ergebnis/composer-normalize": "2.27.0",
|
|
"phpstan/phpstan": "1.7.7",
|
|
"phpunit/phpunit": "9.5.20",
|
|
"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"
|
|
}
|
|
}
|