salamek/gedmo

Gedmo Doctrine Extensions integration into Nette Framework using Kdyby/Doctrine

Maintainers

👁 Salamek

Package info

github.com/Salamek/gedmo

Issues

pkg:composer/salamek/gedmo

Statistics

Installs: 200

Dependents: 1

Suggesters: 0

Stars: 0

v1.0.2 2018-01-04 07:28 UTC

Requires

Requires (Dev)

None

Suggests

None

Provides

None

Conflicts

None

Replaces

None

BSD-3-Clause, GPL-2.0, GPL-3.0 783e67775d34f6e60df911cbe4529844973c3f05

This package is not auto-updated.

Last update: 2026-06-27 12:01:37 UTC


README

Requirements

Rixxi/Gedmo requires Kdyby/Doctrine

Installation

The best way to install Rixxi/Gedmo is using Composer:

$ composer require rixxi/gedmo

Configuration

The best way to install Rixxi/Gedmo is using Composer:

extensions:
gedmo: Rixxi\Gedmo\DI\OrmExtension
# you should probably register Kdyby/Doctrine too
doctrine: Kdyby\Doctrine\DI\OrmExtension

gedmo:
translatableLocale: cs_CZ
defaultLocale: cs_CZ

# enable all annotations
all: on
# enable per annotation
loggable: on
sluggable: on
softDeleteable: on
sortable: on
timestampable: on
translatable: on
treeable: on
uploadable: on

# you must add bit type to your doctrine connection and soft-deleteable to filters
doctrine:
types:
bit: Doctrine\DBAL\Types\BooleanType

filters:
# without this softDeleteable won't work... ...probably
soft-deleteable: Gedmo\SoftDeleteable\Filter\SoftDeleteableFilter

Repository http://github.com/rixxi/gedmo.