Sergii Shymko
Sergii Shymko
**Preconditions:** - Package with a local patch file, for example: `composer.json` ```js { "name": "example/patched-library", "description": "Example patched library", "version": "1.0.0", "require": { "composer/composer": "^1.9||^2.0", "cweagans/composer-patches": "^1.5.0" }, "extra": {...
## The Problem Swoole runtime is by design incompatible with FastCGI mechanisms. Global state specific to FastCGI is out of scope of Swoole. Such architecture is clean, but it greatly...
## Problem Setting `static_handler_locations` of Swoole 4.4.0+ defines paths subject to static handling. While the feature is helpful, it lacks flexibility of URL rewrites supported by web-servers. Assumption of 1-to-1...
Imagine a custom dispatch function based on an HTTP request message, such as request path, host, or cookies, etc. It would extract a request identifier from the request message and...
There's a number of use cases that require tracking response lifecycle: before/after sending headers, before/after sending response body to a client. It would be great to be able to subscribe...
Built-in endpoint `/logout` returns successful 200 OK status even when no tokens (access and/or refresh) have been revoked. That can happen when no tokens have been passed as part of...
# Dependency on Entity Manager Currently, entity manager instance is passed to fixtures. A fixture in its turn uses the entity manager to persist and flush entities created by it....
API endpoints of Workers, particularly the [Workers KV](https://developers.cloudflare.com/workers/runtime-apis/kv) store, are not presently covered by the SDK. PHP backends should be able to read from and write to the Workers KV...
Implementation of `\Doctrine\KeyValueStore\Storage\ArrayStorage::find()` has been copy-pasted from `delete()` including the unset logic instead of replacing it with return.
**Environment:** - React Native 0.36.0 - React Native Form Generator 0.9.9 - iOS **Steps to reproduce:** 1. Declare a simple form: ```js import { Form, InputField } from 'react-native-form-generator'; ```...