Skip to content

Implementation of a timestamp type for the Doctrine DBAL

Notifications You must be signed in to change notification settings

asiviero/doctrine-timestamp

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

doctrine-timestamp

Implementation of a timestamp type for the Doctrine DBAL

This library maps the DateTime PHP class to a Unix timestamp (integer) in the database.

Installation

Just add this to your composer.json

{
  "require": {
    "asiviero/doctrine-timestamp": "dev-master"
  }
}

Then, when bootstraping your doctrine connection :

Type::addType('timestamp', 'DoctrineTimestamp\DBAL\Types\Timestamp');
$conn->getDatabasePlatform()->registerDoctrineTypeMapping('Timestamp', 'timestamp');

About

Implementation of a timestamp type for the Doctrine DBAL

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%