PHPackages                             fawno/drupal-password-hasher - 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. [Authentication &amp; Authorization](/categories/authentication)
4. /
5. fawno/drupal-password-hasher

ActiveCakephp-plugin[Authentication &amp; Authorization](/categories/authentication)

fawno/drupal-password-hasher
============================

Drupal Password Hasher for CakePHP 3.x

1.0.0(7y ago)014MITPHP

Since Jan 18Pushed 7y ago2 watchersCompare

[ Source](https://github.com/fawno/DrupalPasswordHasher)[ Packagist](https://packagist.org/packages/fawno/drupal-password-hasher)[ RSS](/packages/fawno-drupal-password-hasher/feed)WikiDiscussions master Synced yesterday

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

[![](https://camo.githubusercontent.com/6a808a5d5a1f852f1cb69d55d48ed0fd7f167d1f8ab6665b5d083a7258980d71/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f6661776e6f2f44727570616c50617373776f72644861736865722e7376673f7374796c653d706c6173746963)](https://github.com/fawno/DrupalPasswordHasher/blob/master/LICENSE)

DrupalPasswordHasher
====================

[](#drupalpasswordhasher)

DrupalPasswordHasher for CakePHP 3.x

Install
-------

[](#install)

```
composer require fawno/drupal-password-hasher
```

Config AppController.php
------------------------

[](#config-appcontrollerphp)

```
  use Fawno\Auth\DrupalPasswordHasher;

  $this->loadComponent('Auth', [
    'authenticate' => [
      'Form' => [
        'passwordHasher' => DrupalPasswordHasher::class,
        'fields' => [
          'username' => 'username',
          'password' => 'password',
        ]
      ]
    ],
  ]);
```

Config Model/Entity/User.php
----------------------------

[](#config-modelentityuserphp)

```
  use Fawno\Auth\DrupalPasswordHasher;

  class User extends Entity {
    protected function _setPassword ($value) {
      if (strlen($value)) {
        $hasher = new DrupalPasswordHasher();

        return $hasher->hash($value);
      }
    }
  }
```

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity60

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

Unknown

Total

1

Last Release

2672d ago

### Community

Maintainers

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

---

Top Contributors

[![alphp](https://avatars.githubusercontent.com/u/8992091?v=4)](https://github.com/alphp "alphp (11 commits)")

---

Tags

cakephpphpdrupalpasswordcakephphasher

### Embed Badge

![Health badge](/badges/fawno-drupal-password-hasher/health.svg)

```
[![Health](https://phpackages.com/badges/fawno-drupal-password-hasher/health.svg)](https://phpackages.com/packages/fawno-drupal-password-hasher)
```

###  Alternatives

[cakedc/users

Users Plugin for CakePHP

524897.0k16](/packages/cakedc-users)[dereuromark/cakephp-tinyauth

A CakePHP plugin to handle user authentication and authorization the easy way.

129228.6k10](/packages/dereuromark-cakephp-tinyauth)[admad/cakephp-jwt-auth

CakePHP plugin for authenticating using JSON Web Tokens

160680.3k8](/packages/admad-cakephp-jwt-auth)[markstory/acl_extras

Additional tools for managing DB ACL in CakePHP applications.

155311.0k](/packages/markstory-acl-extras)[cakedc/auth

Auth objects for CakePHP

31630.0k2](/packages/cakedc-auth)[uafrica/oauth-server

OAuth Server for CakePHP 3 using the PHP League's OAuth2 Server

5172.1k](/packages/uafrica-oauth-server)

PHPackages © 2026

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