Skip to content

Commit d11d322

Browse files
authored
Added laminas-diactoros (#276)
* Added `laminas-diactoros` - Moved zend-diactoros to the end of lists - Changed installation example to `laminas-diactoros` - Marked zend-diactoros as abandoned where possible
1 parent 101a22a commit d11d322

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

clients/includes/install-message-factory.inc

+3-2
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,14 @@ to install one as well (for example `Guzzle PSR-7`_):
77

88
In order to provide full interoperability, message implementations are
99
accessed through :ref:`factories <message-factory>`. Message factories for
10-
`Diactoros`_, `Guzzle PSR-7`_ and `Slim Framework`_ are available in the
10+
`Laminas Diactoros`_ (and its abandoned predecessor `Zend Diactoros`_), `Guzzle PSR-7`_ and `Slim Framework`_ are available in the
1111
:doc:`message </message>` component:
1212

1313
.. code-block:: bash
1414

1515
$ composer require php-http/message
1616

17-
.. _Diactoros: https://github.com/zendframework/zend-diactoros
1817
.. _Guzzle PSR-7: https://github.com/guzzle/psr7
18+
.. _Laminas Diactoros: https://github.com/laminas/laminas-diactoros
1919
.. _Slim Framework: https://github.com/slimphp/Slim
20+
.. _Zend Diactoros: https://github.com/zendframework/zend-diactoros

httplug/users.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ You can pick any of the clients or adapters :doc:`provided by PHP-HTTP </clients
3636
Popular choices are ``php-http/curl-client`` and ``php-http/guzzle6-adapter``.
3737

3838
Many libraries also need a PSR-7 implementation and the PHP-HTTP message
39-
factories to create messages. The PSR-7 implementations are Zend's Diactoros, Guzzle's PSR-7 and Slim Framework's PSR-7 messages. Do one of the following:
39+
factories to create messages. The PSR-7 implementations are Laminas Diactoros (also still supports the abandoned Zend Diactoros), Guzzle's PSR-7 and Slim Framework's PSR-7 messages. Do one of the following:
4040

4141
.. code-block:: bash
4242
43-
$ composer require php-http/message zendframework/zend-diactoros
43+
$ composer require php-http/message laminas/laminas-diactoros
4444
4545
.. code-block:: bash
4646

message/message-factory.rst

+3-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ The `php-http/message-factory` package defines interfaces for PSR-7 factories in
3030
- ``StreamFactory``
3131
- ``UriFactory``
3232

33-
Implementations of the interfaces above for `Diactoros`_, `Guzzle PSR-7`_ and the `Slim Framework`_ can be found in ``php-http/message``.
33+
Implementations of the interfaces above for `Laminas Diactoros`_ (and its abandoned predecessor `Zend Diactoros`_), `Guzzle PSR-7`_ and the `Slim Framework`_ can be found in ``php-http/message``.
3434

3535
Usage
3636
-----
@@ -135,6 +135,7 @@ It would make sense to also provide factories for the server side constructs
135135
to do that yet. Contributions are welcome if you want to define the
136136
``ServerRequestFactory`` and ``UploadedFileFactory``.
137137

138-
.. _Diactoros: https://github.com/zendframework/zend-diactoros
139138
.. _Guzzle PSR-7: https://github.com/guzzle/psr7
139+
.. _Laminas Diactoros: https://github.com/laminas/laminas-diactoros
140140
.. _Slim Framework: https://github.com/slimphp/Slim
141+
.. _Zend Diactoros: https://github.com/zendframework/zend-diactoros

spelling_word_list.txt

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Elasticsearch
1414
fallback
1515
GitHub
1616
hotfix
17+
Laminas
1718
Liskov
1819
Symfony
1920
HTTPlug

0 commit comments

Comments
 (0)