Skip to content

Releases: anime-db/smotret-anime-browser-bundle

v1.1.0

01 Aug 09:16
Compare
Choose a tag to compare

Changes

  • Catch exceptions
use AnimeDb\Bundle\SmotretAnimeBrowserBundle\Exception\ErrorException;
use AnimeDb\Bundle\SmotretAnimeBrowserBundle\Exception\NotFoundException;

try {
    $content = $browser->get('series/1');
} catch (NotFoundException $e) {
    // series not found
} catch (ErrorException $e) {
    // invalid response
} catch (\Exception $e) {
    // other exceptions
}

v1.0.1

21 Jul 14:41
Compare
Choose a tag to compare

Changes

  • Allow override User Agent from request options.

v1.0.0

20 Jul 09:59
Compare
Choose a tag to compare
add Installation, Configuration, Usage and License docs in README