Skip to content

QueryAuth 4.0.0-alpha

Pre-release
Pre-release
Compare
Choose a tag to compare
@jeremykendall jeremykendall released this 19 Aug 22:50
· 69 commits to develop since this release

New Features

  • QueryAuth\Factory has been added to make creating new Servers, Clients, and
    KeyGenerators extremely simple.
// New factory
$factory = new QueryAuth\Factory();

// New Client, Server, and KeyGenerator
$client = $factory->newClient();
$server = $factory->newServer();
$keyGenerator = $factory->newKeyGenerator();
  • A phpDocumentor config file has been added, allowing you to run $ phpdoc
    from the cli without any options, if you're into that kind of thing.

Backwards Incompatible Changes

  • Renames QueryAuth\NormalizedParameterCollection
    • NormalizedParameterCollection is now ParameterCollection
    • ParameterCollection::add() is now ParameterCollection::set()
  • KeyGenerator::__construct() now accepts RandomLib\Generator as its only
    argument