Adam
Adam
The configuration does not presently allow the full path to the executable to be specified--only the path of the directory where we expect `opj_decompress` to be located; however, some distros...
I believe this should fix #27 Got here via [`drupal/flysystem`](https://www.drupal.org/project/flysystem/issues/3387094). It looks like [the property](https://www.php.net/manual/en/class.streamwrapper.php#streamwrapper.props.context) should have been there for a _long_ time (as in, added in PHP 5 days,...
If they failed to read the number of bytes, the return of `-1` would cause infinite loops, with `-1` always less than the minimum `offset` of `0`. An alternative to...
It is [presently indicated](https://github.com/php/doc-en/blob/1993c38d254743d8c0a2140ff6f797660997083d/reference/stream/streamwrapper/stream-lock.xml#L29-L60) that valid values are in the set of: - `LOCK_SH` - `LOCK_EX` - `LOCK_UN` - `LOCK_NB` The [underlying implementation](https://github.com/php/php-src/blob/07cd46826294f51afc4a78f850d3e3794acd9cce/ext/standard/file.c#L188-L233) appears to allow more like: - `LOCK_SH`...