We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86cc715 commit 39f8463Copy full SHA for 39f8463
composer.json
@@ -34,7 +34,10 @@
34
"phpspec/phpspec": "^5.1 || ^6.1 || ^7.3"
35
},
36
"config": {
37
- "sort-packages": true
+ "sort-packages": true,
38
+ "allow-plugins": {
39
+ "php-http/discovery": false
40
+ }
41
42
"autoload": {
43
"psr-4": {
spec/ClientSpec.php
@@ -22,6 +22,9 @@ function let(ResponseFactoryInterface $responseFactory)
22
function it_is_initializable()
23
{
24
$this->shouldHaveType(Client::class);
25
+
26
+ // make sure the client is also instantiable without arguments
27
+ new Client();
28
}
29
30
function it_is_an_http_client()
0 commit comments