Maciej Holyszko
Maciej Holyszko
This is a feature request for an automatic dark mode for services through darkreader. Inspiration: getferdi/sponsors-only#1505 ### Steps to reproduce 1. Edit service settings 2. Turn dark mode on (without...
## Description ### fix: restore serialization of `DateTime` scalar to pre-1.2.0 A value cannot be serialized into something other than js primitives (boolean string, number) or array, object, null otherwise...
Hello, Would it be feasible to implement handling DEBUG env (`DEBUG=ioredis:*`), as in https://github.com/luin/ioredis#debug to print out everything related to redis? (i.a. when a connection is instantiated, what data is...
Suggestion: An `.env.schema` file - to define required vars or validate values with regex. Inspiration: https://github.com/keithmorris/node-dotenv-extended#envschema
DefinitionGlob to specify a pattern for definition files - there might be multiple definitions files scattered around in a modularized architecture - instead of listing all the files upfront, specify...
Use sourceCache if isSupported check passes, otherwise proceed without cache and do not throw an exception - so that php-di does not break if there is any problem with apcu...
- run preg_replace_callback already during compilation from: ```php protected function get5ce3da5dc66c0791095127() { return \DI\Definition\StringDefinition::resolveExpression('path.cache', '{BASE_PATH}/application/cache', $this->delegateContainer); } protected function get5ce3da5dc66c3314070297() { return \DI\Definition\StringDefinition::resolveExpression('path.cache.app', '{path.cache}/file', $this->delegateContainer); } ``` to: ```php protected...
- compile final function with injected dependencies - only for closure factories for now (as the first step) 1) Simple example: before: ```php return $this->resolveFactory(static function () { return 'bar';...
Hi, I have a test which downloads a file with `supertest` and the file is served by setting the response body to read stream: ```js ctx.body = fs.createReadStream(filePath); ``` Then...
`request.subdomains` getter depends on `request.app.subdomainOffset`, which can be configured after koa is instantiated: - https://koajs.com/#settings e.g. for hostname `app.example.com` original ctx.subdomains would resolve to ['app'] (with koa's default subdomainOffset =...