Skip to content

v2.4.0

Latest
Compare
Choose a tag to compare
@tschoffelen tschoffelen released this 16 Jun 16:11
79ac331

What's Changed

Implement PKPassBundle by @tschoffelen in #155

Implements a new class called PKPassBundle, which allows you to package multiple passes together and present them at once in Safari:

You can use it like this:

use PKPass\PKPassBundle;

$bundle = new PKPassBundle();
$bundle->add($pass1);
$bundle->add($pass2);

$bundle->output();

Full Changelog: v2.3.2...v2.4.0