49 lines
1.4 KiB
JSON
49 lines
1.4 KiB
JSON
{
|
|
"name": "plesk/socket-client",
|
|
"description": "Socket client for PHP-HTTP (Plesk)",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Joel Wurtz",
|
|
"email": "jwurtz@jolicode.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^7.2 || ^8.0",
|
|
"nyholm/psr7": "^1.3",
|
|
"php-http/httplug": "^2.0",
|
|
"psr/http-client": "^1.0",
|
|
"symfony/options-resolver": "^2.6 || ^3.4 || ^4.4 || ^5.0 || ^6.0"
|
|
},
|
|
"require-dev": {
|
|
"friendsofphp/php-cs-fixer": "^2.2 || ^3.0",
|
|
"php-http/client-integration-tests": "^3.0",
|
|
"php-http/message": "^1.9",
|
|
"php-http/client-common": "^2.3",
|
|
"phpunit/phpunit": "^8.5.23 || ~9.5"
|
|
},
|
|
"provide": {
|
|
"php-http/client-implementation": "1.0",
|
|
"psr/http-client-implementation": "1.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Http\\Client\\Socket\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Http\\Client\\Socket\\Tests\\": "tests/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"cs-check": "vendor/bin/php-cs-fixer fix --dry-run",
|
|
"cs-fix": "vendor/bin/php-cs-fixer fix",
|
|
"test": "vendor/bin/phpunit",
|
|
"test-ci": "vendor/bin/phpunit --coverage-clover build/coverage.xml",
|
|
"gen-ssl": "tests/server/ssl/generate.sh"
|
|
},
|
|
"prefer-stable": true,
|
|
"minimum-stability": "dev"
|
|
}
|