-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.56 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "php-http/socket-client",
"description": "Socket client for PHP-HTTP",
"license": "MIT",
"authors": [
{
"name": "Joel Wurtz",
"email": "jwurtz@jolicode.com"
}
],
"require": {
"php": "^8.1",
"nyholm/psr7": "^1.8.1",
"php-http/httplug": "^2.4",
"psr/http-client": "^1.0",
"psr/http-message": "^1.0 || ^2.0",
"symfony/options-resolver": "^2.6 || ^3.4 || ^4.4 || ^5.0 || ^6.0 || ^7.0 || ^8.0"
},
"require-dev": {
"ext-openssl": "*",
"friendsofphp/php-cs-fixer": "^3.51",
"php-http/client-integration-tests": "^4.0",
"php-http/message": "^1.16",
"php-http/client-common": "^2.7",
"phpunit/phpunit": "^10.0 || ^11.0 || ^12.0",
"php-http/message-factory": "^1.1"
},
"conflict": {
"guzzlehttp/psr7": "<2.0"
},
"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"
}