Skip to content

v1.3.0

Compare
Choose a tag to compare
@SimonFrings SimonFrings released this 12 Nov 15:24
  • Feature: Support upcoming PHP 8.1 release.
    (#49 by @SimonFrings)

  • Feature: Support passing custom PHP binary as optional argument to Factory.
    (#45 and #46 by @clue)

    // advanced usage: pass custom PHP binary to use when spawning child process
    $factory = new Clue\React\SQLite\Factory(null, '/usr/bin/php6.0');
  • Feature: Support using blocking SQLite adapter when using an empty binary path.
    (#48 by @clue)

    // advanced usage: empty binary path runs blocking SQLite in same process
    $factory = new Clue\React\SQLite\Factory(null, '');
  • Feature: Use default php binary instead of respecting PHP_BINARY when automatic binary detection fails for non-CLI SAPIs.
    (#50 by @clue)