PHPackages                             anime-db/ani-db-browser-bundle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. anime-db/ani-db-browser-bundle

ActiveLibrary

anime-db/ani-db-browser-bundle
==============================

Plugin AniDB for the catalog Anime DB

v2.2.1(8y ago)41.3k21GPL-3.0PHPPHP &gt;=5.5

Since May 5Pushed 8y ago2 watchersCompare

[ Source](https://github.com/anime-db/ani-db-browser-bundle)[ Packagist](https://packagist.org/packages/anime-db/ani-db-browser-bundle)[ Docs](http://github.com/anime-db/ani-db-browser-bundle)[ RSS](/packages/anime-db-ani-db-browser-bundle/feed)WikiDiscussions master Synced today

READMEChangelog (10)Dependencies (8)Versions (20)Used By (1)

[![Browser for AniDB.net](https://camo.githubusercontent.com/3c61fb6eaa698f9735441f3ec7f164ad32824b8b58bdc1d7d75c4f591a0efce8/687474703a2f2f616e696d652d64622e6f72672f62756e646c65732f616e696d6564626f6666736974652f696d616765732f616e6964622e6e65742e706e67)](http://anidb.net/)

[![Latest Stable Version](https://camo.githubusercontent.com/4ed7dc2c8781a1964cc20afb9a6a0ea621c87c2d9d431b01c4ddd6e4a6f2299e/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f616e696d652d64622f616e692d64622d62726f777365722d62756e646c652e7376673f6d61784167653d33363030266c6162656c3d737461626c65)](https://packagist.org/packages/anime-db/ani-db-browser-bundle)[![Total Downloads](https://camo.githubusercontent.com/ea515ca9531ecf482ec7b1ee320540b4305eb98b7be530c776dcc66fc84d7cd3/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f616e696d652d64622f616e692d64622d62726f777365722d62756e646c652e7376673f6d61784167653d33363030)](https://packagist.org/packages/anime-db/ani-db-browser-bundle)[![Build Status](https://camo.githubusercontent.com/fa197a6a70768d6739a0e89de7bbb8d1fa8cf6f3b339fa781ba79dfa65d4d1ed/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f616e696d652d64622f616e692d64622d62726f777365722d62756e646c652e7376673f6d61784167653d33363030)](https://travis-ci.org/anime-db/ani-db-browser-bundle)[![Coverage Status](https://camo.githubusercontent.com/5563484b56aa3ff05bcfee45d6c6992debe616d611407bc9b7cd79e5c5e8c78c/68747470733a2f2f696d672e736869656c64732e696f2f636f766572616c6c732f616e696d652d64622f616e692d64622d62726f777365722d62756e646c652e7376673f6d61784167653d33363030)](https://coveralls.io/github/anime-db/ani-db-browser-bundle?branch=master)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/71f04b0c67dcbe67c529ed6092c30ab1ed54db1ef132f9d87907a1bed014812e/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f616e696d652d64622f616e692d64622d62726f777365722d62756e646c652e7376673f6d61784167653d33363030)](https://scrutinizer-ci.com/g/anime-db/ani-db-browser-bundle/?branch=master)[![SensioLabs Insight](https://camo.githubusercontent.com/03f5d964cbcb59570dc90c097dfe2ed5e8e93f01ff099a860cbd4d74e48c0820/68747470733a2f2f696d672e736869656c64732e696f2f73656e73696f6c6162732f692f30653338333932302d656166352d343734612d623939382d6130303436323438353832372e7376673f6d61784167653d33363030266c6162656c3d534c496e7369676874)](https://insight.sensiolabs.com/projects/0e383920-eaf5-474a-b998-a00462485827)[![StyleCI](https://camo.githubusercontent.com/b92feb0a3aeaec5fddca13905059237b39fbbef5cb85ebef6608d2706a3eb676/68747470733a2f2f7374796c6563692e696f2f7265706f732f31393130313333372f736869656c643f6272616e63683d6d6173746572)](https://styleci.io/repos/19101337)[![License](https://camo.githubusercontent.com/8129ae94a53e655dff5bb1ea10ded21f9a7abeb1f6c50f34a80edab9b41b8190/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f616e696d652d64622f616e692d64622d62726f777365722d62756e646c652e7376673f6d61784167653d33363030)](https://github.com/anime-db/ani-db-browser-bundle)

Browser for AniDB.net
=====================

[](#browser-for-anidbnet)

Read API documentation here: [http://wiki.anidb.net/w/HTTP\_API\_Definition](http://wiki.anidb.net/w/HTTP_API_Definition)

Installation
------------

[](#installation)

Pretty simple with [Composer](http://packagist.org), run:

```
composer require anime-db/ani-db-browser-bundle
```

Add AnimeDbAniDbBrowserBundle to your application kernel

```
// app/appKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new AnimeDb\Bundle\AniDbBrowserBundle\AnimeDbAniDbBrowserBundle(),
    );
}
```

Configuration
-------------

[](#configuration)

```
# app/config/config.yml

anime_db_ani_db_browser:
    api:
        # API host
        # As a default used 'http://api.anidb.net:9001'
        host: 'http://api.anidb.net:9001'

        # Prefix for API resurces
        # As a default used '/httpapi/'
        prefix: '/httpapi/'

        # API version
        # As a default used '1'
        protover: 1

    # You must register a client and use it here.
    # See for more info:
    #  - http://anidb.net/perl-bin/animedb.pl?show=client
    #  - https://wiki.anidb.net/w/UDP_Clients
    #  - https://wiki.anidb.net/w/UDP_API_Definition
    app:
        # Verion of your client.
        version: 1

        # Your client name.
        # You point it at registration here: http://anidb.net/perl-bin/animedb.pl?show=client
        client: 'my_home_client'

        # Your client code.
        # You will receive it after registration.
        code: 'api-team-XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'
```

Usage
-----

[](#usage)

First get a browser

```
$browser = $this->get('anime_db.ani_db.browser');
```

Get data for anime [Seikai no Monshou](http://anidb.net/perl-bin/animedb.pl?show=anime&aid=1)([wiki](https://wiki.anidb.info/w/HTTP_API_Definition#Anime)):

```
$content = $browser->get(['query' => ['request' => 'anime', 'aid' => 1]]);
```

Catch exceptions

```
use AnimeDb\Bundle\AniDbBrowserBundle\Exception\BannedException;
use AnimeDb\Bundle\AniDbBrowserBundle\Exception\NotFoundException;

try {
    $content = $browser->get('anime?aid=1');
} catch (BannedException $e) {
    // you are banned
} catch (NotFoundException $e) {
    // anime not found
} catch (\Exception $e) {
    // other exceptions
}
```

You can customize request options. See [Guzzle Documentation](http://docs.guzzlephp.org/en/stable/request-options.html).

License
-------

[](#license)

This bundle is under the [GPL v3 license](http://opensource.org/licenses/GPL-3.0). See the complete license in the file: LICENSE

###  Health Score

33

—

LowBetter than 75% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity20

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity67

Established project with proven stability

 Bus Factor1

Top contributor holds 98.6% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~66 days

Recently: every ~5 days

Total

19

Last Release

3190d ago

Major Versions

0.1.1 → 1.0.02014-08-08

1.1.x-dev → v2.0.02017-07-18

PHP version history (3 changes)0.1.0PHP &gt;=5.4.0

v1.0.2PHP &gt;=5.4

v2.0.0PHP &gt;=5.5

### Community

Maintainers

![](https://www.gravatar.com/avatar/9a6415c83577efe7b70d9ae4a3bb12958adc11c16e530ff844ff217b0fd0c54a?d=identicon)[Peter Gribanov](/maintainers/Peter%20Gribanov)

---

Top Contributors

[![peter-gribanov](https://avatars.githubusercontent.com/u/1954436?v=4)](https://github.com/peter-gribanov "peter-gribanov (215 commits)")[![Erliz](https://avatars.githubusercontent.com/u/1262276?v=4)](https://github.com/Erliz "Erliz (3 commits)")

---

Tags

anidbbrowserphpplugin

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/anime-db-ani-db-browser-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/anime-db-ani-db-browser-bundle/health.svg)](https://phpackages.com/packages/anime-db-ani-db-browser-bundle)
```

###  Alternatives

[neuron-core/neuron-ai

The PHP Agentic Framework.

1.8k245.3k20](/packages/neuron-core-neuron-ai)[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3731.2M42](/packages/tencentcloud-tencentcloud-sdk-php)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
