QueryAuth 4.0.0-alpha
Pre-release
Pre-release
·
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 nowParameterCollection
ParameterCollection::add()
is nowParameterCollection::set()
KeyGenerator::__construct()
now acceptsRandomLib\Generator
as its only
argument