mdjaman / mdjaman-common
Module that provides common functionality and library code for ZF2/ZF3 & Doctrine applications
Requires
- php: ^7.4
- ext-ctype: *
- ext-iconv: *
- ext-json: *
- ext-mbstring: *
- ext-openssl: *
- doctrine/doctrine-module: ^5.0
- gedmo/doctrine-extensions: ^3.11
- imagine/imagine: ^1.3
- laminas/laminas-authentication: 2.*
- laminas/laminas-eventmanager: ^3.0
- laminas/laminas-form: ^3.1
- laminas/laminas-inputfilter: 2.*
- laminas/laminas-log: 2.*
- laminas/laminas-modulemanager: 2.*
- laminas/laminas-servicemanager: ^3.0
- laminas/laminas-stdlib: ^3.0
- mdjaman/jms-serializer-module: 3.*
Requires (Dev)
- phpstan/phpstan: ^1.10
- phpunit/phpunit: 9.*
- vimeo/psalm: ^5.8
Suggests
- doctrine/doctrine-mongo-odm-module: If you want to use Doctrine ODM
- doctrine/doctrine-orm-module: If you want to use Doctrine ORM
- imagine/imagine: If you need image manipulation after uploading image
This package is auto-updated.
Last update: 2025-03-10 04:57:32 UTC
README
Introduction
Module that provides common functionality and library code for ZF2/ZF3 applications integrated with doctrine ORM or ODM.
Installation
Using Composer (recommended and only way)
Mdjaman\MdjamanCommon is available through composer. Add "mdjaman/mdjaman-common" to your composer.json list.
Choose most recent v2 tag for zf2
"mdjaman/mdjaman-common": "2.*"
Choose most recent v3 tag for zf3
"mdjaman/mdjaman-common": "3.*"
Enable the module in your config/application.config.php file. Add an entry MdjamanCommon
to the list of enabled
modules.
Usage
To make this MdjamanCommon deal with Gedmo\Blameable extension for you, make sure your AuthenticationService implements
Zend\Authenticate\AuthenticationServiceInterface and add this alias mdjaman_auth_service in a aliases
section under service_manager
in your module.config.php
'service_manager' => [
'aliases' => [
'mdjaman_auth_service' => <MyGreatAuthenticationService>,
],
...
]
],
More to come!