Files
curly/composer.json
2022-02-10 14:30:17 +00:00

42 lines
794 B
JSON

{
"name": "ivuorinen/curly",
"description": "HTTP Curl client capable of NTLM authentication",
"keywords": [
"http",
"curl",
"ntlm"
],
"license": "MIT",
"authors": [
{
"name": "Ismo Vuorinen",
"email": "ismo@ivuorinen.net"
}
],
"type": "project",
"require": {
"php": ">=7.1",
"league/uri": "6.5.0",
"ext-curl": "*",
"ext-zlib": "*"
},
"require-dev": {
"phpunit/phpunit": "6.5.14",
"phpstan/phpstan": "1.4.6"
},
"autoload": {
"psr-4": {
"ivuorinen\\Curly\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ivuorinen\\Curly\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit --colors --verbose",
"check": "vendor/bin/phpstan analyse src tests --level=7"
}
}