PHPackages                             nowo-tech/vault-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. [Security](/categories/security)
4. /
5. nowo-tech/vault-bundle

ActiveSymfony-bundle[Security](/categories/security)

nowo-tech/vault-bundle
======================

Symfony bundle for a password and secrets vault: logins, notes, cards, contacts, documents, folders, sharing, trash, and password generator

v1.4.0(2w ago)012MITPHPPHP &gt;=8.2 &lt;8.6CI passing

Since Jul 4Pushed 1mo agoCompare

[ Source](https://github.com/nowo-tech/VaultBundle)[ Packagist](https://packagist.org/packages/nowo-tech/vault-bundle)[ Docs](https://packagist.org/packages/nowo-tech/vault-bundle)[ GitHub Sponsors](https://github.com/HecFranco)[ RSS](/packages/nowo-tech-vault-bundle/feed)WikiDiscussions main Synced 1w ago

READMEChangelog (3)Dependencies (85)Versions (13)Used By (0)

Vault Bundle
============

[](#vault-bundle)

[![CI](https://github.com/nowo-tech/VaultBundle/actions/workflows/ci.yml/badge.svg)](https://github.com/nowo-tech/VaultBundle/actions/workflows/ci.yml) [![Packagist Version](https://camo.githubusercontent.com/8f2a82a7bcd79c8d33a45920a86bd2f65c7cbebbde80a8a44b6269ebd52d2776/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6e6f776f2d746563682f7661756c742d62756e646c652e7376673f7374796c653d666c6174)](https://packagist.org/packages/nowo-tech/vault-bundle) [![Packagist Downloads](https://camo.githubusercontent.com/f08f980cfeb44002d934f3423db707a7c0ceb17cc3a13f466c5281998765db46/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6e6f776f2d746563682f7661756c742d62756e646c652e737667)](https://packagist.org/packages/nowo-tech/vault-bundle) [![License](https://camo.githubusercontent.com/7013272bd27ece47364536a221edb554cd69683b68a46fc0ee96881174c4214c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d626c75652e737667)](LICENSE) [![PHP](https://camo.githubusercontent.com/3f99b197569aa2dcfbefff17ecc68d74098e7f929d8b52dc40f3a898f740eae1/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048502d382e322532422d3737374242343f6c6f676f3d706870)](https://php.net) [![Symfony](https://camo.githubusercontent.com/d1d79515b840c074d19d41fa43744eef2c666cb55b757f7f2ff71e50555cfeb8/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f53796d666f6e792d372e34253242253230253743253230382e302532422d3030303030303f6c6f676f3d73796d666f6e79)](https://symfony.com) [![GitHub stars](https://camo.githubusercontent.com/f33eb72d277032f89b4b551f669c554174cba9e103d0ce566980000e541bbef8/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f6e6f776f2d746563682f5661756c7442756e646c652e7376673f7374796c653d736f6369616c266c6162656c3d53746172)](https://github.com/nowo-tech/VaultBundle)

> ⭐ **Found this useful?** Give it a **star** on [GitHub](https://github.com/nowo-tech/VaultBundle) so more developers can find it.

Symfony bundle for a **password and secrets vault**: logins, secure notes, credit cards, contacts, identity documents, folders, sharing, trash, read-only events, and a built-in password generator.

**FrankenPHP worker mode:** Supported — demo uses FrankenPHP on Symfony 8 ([Demo with FrankenPHP](docs/DEMO-FRANKENPHP.md)).

Features
--------

[](#features)

- Item types: login, secure note, credit card, contact, ID card, driver's license, passport, document
- Folders with share and trash; item soft-delete with restore/purge
- **Tags** — label items, filter and search by tag
- `VaultGrant` for users and teams (read / write / admin) + share UI
- `VaultTeamMembershipResolverInterface` for team-based grants
- **Browser extension** — REST API + Chrome/Firefox autofill (optional)
- **Runtime config** — optional DB-backed settings with admin UI
- **Key rotation** — `nowo:vault:reencrypt` command and demo walkthrough
- Events: list query/result, access check, read-only resolve, extension auth
- Server-side libsodium payload encryption; CSRF on manage POST actions
- Dark manage UI + password generator (modal + inline)
- Document attachments (encrypted in payload)

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

[](#installation)

```
composer require nowo-tech/vault-bundle
```

```
php -r 'echo base64_encode(random_bytes(32)), PHP_EOL;'
```

```
# config/packages/nowo_vault.yaml
nowo_vault:
    user_class: App\Entity\User
    encryption_key: '%env(VAULT_ENCRYPTION_KEY)%'
```

See [Installation](docs/INSTALLATION.md).

Demo
----

[](#demo)

```
make -C demo/symfony8 up
# Demo started at: http://localhost:8023  →  /tools/vault (auto-login)
```

Documentation
-------------

[](#documentation)

- [Installation](docs/INSTALLATION.md)
- [Configuration](docs/CONFIGURATION.md)
- [Browser extension](docs/BROWSER-EXTENSION.md)
- [Usage](docs/USAGE.md)
- [Contributing](docs/CONTRIBUTING.md)
- [Changelog](docs/CHANGELOG.md)
- [Upgrading](docs/UPGRADING.md)
- [Release process](docs/RELEASE.md)
- [Security](docs/SECURITY.md)
- [Encryption key rotation](docs/ENCRYPTION-KEY-ROTATION.md)
- [Engram](docs/ENGRAM.md)
- [Spec-driven development](docs/SPEC-DRIVEN-DEVELOPMENT.md)
- [GitHub Spec Kit](docs/SPEC-KIT.md)

### Additional documentation

[](#additional-documentation)

- [Access control &amp; read-only events](docs/examples/AccessControl.md)
- [Demo with FrankenPHP](docs/DEMO-FRANKENPHP.md)

Tests and coverage
------------------

[](#tests-and-coverage)

```
make test              # PHPUnit
make test-ts           # Vitest
make test-coverage     # PHP coverage report
make release-check     # Full pre-release QA
```

The `test-coverage-100` / `release-check` gate targets **100% line coverage on the measured subset of `src/`** (see `phpunit.xml.dist`). Controllers, repositories, forms, and Doctrine listeners are **excluded** from that metric; they are covered by E2E and integration tests instead. New services and domain logic under `src/Service/`, `src/Security/`, etc. must remain fully covered to pass release checks.

Run `make test-coverage` and `make test-ts` for current PHP and TS coverage percentages.

License
-------

[](#license)

MIT — see [LICENSE](LICENSE).

###  Health Score

44

—

FairBetter than 90% of packages

Maintenance93

Actively maintained with recent releases

Popularity7

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 60% 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 ~3 days

Total

10

Last Release

17d ago

### Community

Maintainers

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

---

Top Contributors

[![HecFranco](https://avatars.githubusercontent.com/u/24323276?v=4)](https://github.com/HecFranco "HecFranco (9 commits)")[![actions-user](https://avatars.githubusercontent.com/u/65916846?v=4)](https://github.com/actions-user "actions-user (3 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (3 commits)")

---

Tags

phpsymfonysecurityencryptionfrankenphpvaultSymfony Bundlesecretspassword manager

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan, Rector

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/nowo-tech-vault-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/nowo-tech-vault-bundle/health.svg)](https://phpackages.com/packages/nowo-tech-vault-bundle)
```

###  Alternatives

[easycorp/easyadmin-bundle

Admin generator for Symfony applications

4.3k18.3M430](/packages/easycorp-easyadmin-bundle)[2lenet/crudit-bundle

The easy like Crud'it Bundle.

1617.3k16](/packages/2lenet-crudit-bundle)[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.5k6.0M779](/packages/sylius-sylius)[pimcore/pimcore

Content &amp; Product Management Framework (CMS/PIM/E-Commerce)

3.8k3.9M536](/packages/pimcore-pimcore)[contao/core-bundle

Contao Open Source CMS

1301.7M3.1k](/packages/contao-core-bundle)[open-dxp/opendxp

Content &amp; Product Management Framework (CMS/PIM)

9626.1k69](/packages/open-dxp-opendxp)

PHPackages © 2026

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