{ "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": "5.3.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" } }