mirror of
https://github.com/ivuorinen/curly.git
synced 2026-02-08 16:46:25 +00:00
Initial commit
This commit is contained in:
41
composer.json
Normal file
41
composer.json
Normal file
@@ -0,0 +1,41 @@
|
||||
{
|
||||
"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",
|
||||
"ext-curl": "*",
|
||||
"ext-zlib": "*"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "6.*",
|
||||
"phpstan/phpstan": "^0.10.5"
|
||||
},
|
||||
"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"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user