Larry Garfield
Larry Garfield
Yes, but there's a lot of prep-work involved in preparing an object for exporting. [`ObjectExporter`](https://github.com/Crell/Serde/blob/master/src/PropertyHandler/ObjectExporter.php) is one of the more involved implementations. It's not reasonable to duplicate that logic in...
PER-CS was released as 2.0, not 1.1. And per #6707, we're trying to restructure the way the PER-CS rules are defined anyway. Once that's in, though, this would make a...
Just a note that the next version of PER-CS is going to encourage (but not require) the style shown here.
TOML is definitely on the todo list. I looked into it a while back, and found one existing PHP library that is... rather dated but probably still works? https://github.com/leonelquinteros/php-toml (If...
Hm. Yeah, I'm not finding any TOML 1.0-compatible libraries for PHP so far. I'm not sure adding 0.4 support to Serde directly is wise, given how out of date it...
I think you just need to remove the Flatten directive? I just ran a quick test using the PointList class, used in the CSV formatter tests. It worked fine with...
The odds of being a viable drop-in replacement for php-src are, frankly, low. It's a lot of code, a lot of work, a lot of edge cases, and probably very...
If you wanted to target a strict subset of PHP, that would create a demand for a tool (either in php-compiler or separately) to transpile all of PHP down to...
@ircmaxell For argument's sake... what's the value in putting a hard PHP requirement into Composer rather than just documenting "dude, this don't work in PHP version X.Y.Z"? If someone installs...
My thinking is along the lines of what dossy is suggesting. Basically, rather than version number detection in Composer, do feature detection in PHP. You can download the library, but...