@@ -30,23 +30,26 @@ implementations but only on the standard. The library should only require the
30
30
PSR standards.
31
31
32
32
To run tests, you might still need an implementation. We recommend to
33
- explicitly require that, but only for dev . To build a library that needs to
34
- send HTTP requests, you could do:
33
+ explicitly require that, but only for development . To build a library that
34
+ needs to send HTTP requests, you could do:
35
35
36
36
.. code-block :: bash
37
+
37
38
$ composer require --dev symfony/http-client
38
39
$ composer require --dev nyholm/psr7
39
40
40
41
Then, you can disable the Composer plugin provided by ``php-http/discovery ``
41
- because you just installed the dev dependencies you need for testing:
42
+ because you just installed the `` dev `` dependencies you need for testing:
42
43
43
44
.. code-block :: bash
45
+
44
46
$ composer config allow-plugins.php-http/discovery false
45
47
46
48
Finally, you need to require ``php-http/discovery `` and the generic implementations
47
49
that your library is going to need:
48
50
49
51
.. code-block :: bash
52
+
50
53
$ composer require php-http/discovery:^1.17
51
54
$ composer require psr/http-client-implementation:*
52
55
$ composer require psr/http-factory-implementation:*
@@ -132,6 +135,7 @@ to prefer. You can specify the implementation for one of the standards:
132
135
133
136
134
137
.. code-block :: bash
138
+
135
139
$ composer config extra.discovery.psr/http-factory-implementation GuzzleHttp\P sr7\H ttpFactory
136
140
137
141
This will update your ``composer.json `` file to add the following configuration:
@@ -158,6 +162,7 @@ Don't forget to run composer install to apply the changes, and ensure that
158
162
the composer plugin is enabled:
159
163
160
164
.. code-block :: bash
165
+
161
166
$ composer config allow-plugins.php-http/discovery true
162
167
$ composer install
163
168
@@ -338,7 +343,7 @@ Internally, this class relies on the concrete PSR-17 factories that are installe
338
343
and can use discovery to find implementations if you do not specify them in the constructor.
339
344
340
345
``Psr17Factory `` provides two additional methods that allow creating
341
- server requests or URI objects from the PHP super-globals ::
346
+ server requests or URI objects from the PHP superglobals ::
342
347
343
348
$serverRequest = $factory->createServerRequestFromGlobals();
344
349
$uri = $factory->createUriFromGlobals();
0 commit comments