{ "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.2.1" }, "require-dev": { "ergebnis/composer-normalize": "2.36.0", "phpstan/phpstan": "1.10.33", "phpunit/phpunit": "10.3.3", "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" } }