Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 364 Bytes

installation.md

File metadata and controls

22 lines (18 loc) · 364 Bytes

Installation

Pretty simple with Composer, run:

composer require gpslab/date-bundle

Add GpsLabDateBundle to your application kernel

// app/AppKernel.php
public function registerBundles()
{
    return array(
        // ...
        new GpsLab\Bundle\DateBundle\GpsLabDateBundle(),
        // ...
    );
}