PHPackages                             maalls/jmdict-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. maalls/jmdict-bundle

ActiveSymfony-bundle

maalls/jmdict-bundle
====================

v1.5.1(7y ago)014MITPHP

Since Feb 15Pushed 7y ago1 watchersCompare

[ Source](https://github.com/maalls/jmdictbundle)[ Packagist](https://packagist.org/packages/maalls/jmdict-bundle)[ RSS](/packages/maalls-jmdict-bundle/feed)WikiDiscussions master Synced today

READMEChangelog (1)Dependencies (1)Versions (24)Used By (0)

Requirement
===========

[](#requirement)

Requires you setup a symfony 4.2. project.

Installation
============

[](#installation)

Add the repository to your composer.json file.

```
"repositories": [
    { "type": "vcs", "url": "https://github.com/maalls/jmdictbundle" }
],

```

Run the composer command.

```
composer require maalls/jmdict-bundle @dev
```

Make sure the JMDictBundle is there, and add the HeisigBundle to config/bundles.php

```
 return [
    ...
    Maalls\JMDictBundle\JMDictBundle::class => ['all' => true],
    Maalls\HeisigBundle\HeisigBundle::class => ['all' => true],
    ...
];
```

Create the database tables.

```
php bin/console doctrine:migrations:diff

```

```
php bin/console doctrine:migrations:migrate

```

Load the data in the database.

```
php bin/console maalls:jmdict:load-database

```

If you have mecab install, add the following in config/routing.yml then go to /jmdict/search to have a peak of want can be done.

```
maalls_jmdict_bundle:
    # loads routes from the YAML or XML files found in some bundle directory
    resource: '@JMDictBundle/Controller/'
    type:     annotation
    prefix:   /jmdict

```

Example
=======

[](#example)

Get english glossaries for a japanese word

```
// returns all the elements matching 世界
$words = $em->getRepository(\Maalls\JMDictBundle\Entity\Word::class)->findBy(["value" => "世界"]);

$word = $words[0];

// get all the glossaries related to an element.
$senseWords = $word->getSenseWords();
$senseWord = $senseWords[0];
$senseWord->getSense()->getSenseGlossaries();
```

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity73

Established project with proven stability

 Bus Factor1

Top contributor holds 100% 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 ~10 days

Recently: every ~0 days

Total

23

Last Release

2771d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/f6b7ae7294bb3add5fe054da21a159aa7670ced6573d9ad80184eede53740772?d=identicon)[maalls](/maintainers/maalls)

---

Top Contributors

[![maalls](https://avatars.githubusercontent.com/u/1229999?v=4)](https://github.com/maalls "maalls (41 commits)")

### Embed Badge

![Health badge](/badges/maalls-jmdict-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/maalls-jmdict-bundle/health.svg)](https://phpackages.com/packages/maalls-jmdict-bundle)
```

PHPackages © 2026

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