Larry Garfield
Larry Garfield
Thanks to @derickr for pointing this out to me. It drove me batty for days. :smile:
I have an env var set via a .env file, which is populated into the environment by Symfony/dotenv. It is defined like so: ``` ENABLE_CACHE=false ``` This creates a problem,...
PSR-7 v2 just adds types, which should be safe in virtually any circumstances. It does require PHP 7.2 or higher, but allowing either version should allow Composer to figure it...
With PHP 8.5 coming out very soon, it's time for a minor update. This should not require any breaking changes, so I expect it to be a 3.1 release, not...
These are almost never used, and are now deprecated in PHP 8.5. Let's go ahead and tell people to never use them in any version. ```php switch ($val) { case...
### Description According to [the docs](https://mermaid.js.org/syntax/flowchart.html#css-classes), it's possible to define the styling of a node in a Flowchart graph via CSS. The example given looks like this: ```css .cssClass >...
We already have a custom `EnumOnArrayImporter`. We ought to have one for DateTime, too. Which is an ugly way to do it, but c'est la vie.
In *most* cases, this should be stable. But it may require an extra interface much like Symfony Serializer does. The few cases that depend on the value would have to...
Currently, `Importer::canImport()` accepts a Field and a format name string. However, there are cases where we want to know more about the Deformatter, such as if its source value is...
This could be a pretty print flag that controls the flags that get used in json_encode(), or it could be a full flags bitmask. Undecided.