mirror of
https://github.com/ivuorinen/curly.git
synced 2026-01-26 03:23: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",
|
|
"homepage": "https://github.com/ivuorinen"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^8.1",
|
|
"ext-curl": "*",
|
|
"ext-zlib": "*",
|
|
"league/uri": "7.4.0"
|
|
},
|
|
"require-dev": {
|
|
"ergebnis/composer-normalize": "2.41.1",
|
|
"phpstan/phpstan": "1.10.55",
|
|
"phpunit/phpunit": "10.5.5",
|
|
"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"
|
|
}
|
|
}
|