Effectra HTTP Factory is a PHP library that provides factory classes for creating PSR-7 compliant HTTP message objects. It follows the PSR-17 standard for HTTP factories, ensuring interoperability and compatibility with other PSR-7 compliant libraries and frameworks.
- Factory classes for creating PSR-7 compliant HTTP message objects.
- Implementation of the
psr/http-factory
interfaces. - Easy creation of HTTP messages such as requests, responses, URIs, and more.
- PHP 7.2 or higher
You can install the library using Composer. Run the following command in your project directory:
composer require effectra/http-factory
use Effectra\Http\Factory\StreamFactory;
$streamFactory = new StreamFactory();
$stream = $streamFactory->createStream('Hello, world!');
use Effectra\Http\Factory\RequestFactory;
$requestFactory = new RequestFactory();
$request = $requestFactory->createRequest('GET', 'https://example.com');
use Effectra\Http\Factory\ServerRequestFactory;
$serverRequestFactory = new ServerRequestFactory();
$serverRequest = $serverRequestFactory->createServerRequest('POST', '/submit-form', $_SERVER);
use Effectra\Http\Factory\ResponseFactory;
$responseFactory = new ResponseFactory();
$response = $responseFactory->createResponse(200, 'OK');
use Effectra\Http\Factory\UriFactory;
$uriFactory = new UriFactory();
$uri = $uriFactory->createUri('https://example.com');
For more examples and detailed usage instructions, please refer to the documentation.
Contributions are welcome! If you find any issues or have suggestions for improvement, please open an issue or submit a pull request on the GitHub repository.
Effectra HTTP Factory is open-source software licensed under the MIT license.
Thank you for using the Effectra HTTP Factory library. If you have any questions or need further assistance, feel free to reach out to us.