Mike Schell

Results 6 issues of Mike Schell

I've extended the `PostmarkClient::sendEmail()` and `PostmarkClient::sendEmailWithTemplate()` to work asynchronously in a private project. If there's any interest in this feature, I'd be happy to work on a PR.

Composer was complaining about the event dependencies injected into Teleport\Composer methods. This PR - adds the Composer project to require-dev so Composer's classes can be introspected in the IDE -...

Expected behavior: ``` $query = $xpdo->newQuery(::class); $query->setClassAlias('A'); $query->innerJoin(::class>, 'B', ['B.fk_id = A.id']); $iterator = $xpdo->getIterator(::class, $query); ... (expect objects retrieved in the $iterator to have successfully run the innerJoin) ```...