nicosomb/wallabag-carbondate-bundle

Try to guess creation date by using carbon date, see http://carbondate.cs.odu.edu.

Installs: 42

Dependents: 0

Suggesters: 0

Security: 0

Stars: 5

Watchers: 1

Forks: 0

Open Issues: 0

Type:symfony-bundle

pkg:composer/nicosomb/wallabag-carbondate-bundle

1.0.0-alpha.1 2017-04-28 14:03 UTC

This package is auto-updated.

Last update: 2025-10-05 00:49:54 UTC


README

This bundle allows you to try to guess the creation date of an article by using carbon date (http://carbondate.cs.odu.edu).

Requirements

  • wallabag >= 2.2.2

Installation

Download the bundle

composer require nicosomb/wallabag-carbondate-bundle

Enable the bundle

<?php
// app/AppKernel.php

// ...
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            // ...

            new Nicosomb\WallabagCarbondateBundle\NicosombWallabagCarbondateBundle(),
        );

        // ...
    }

    // ...
}

Configure your application

# app/config/config.yml

nicosomb_wallabag_carbondate:
    server: 'http://carbondate.cs.odu.edu'
    enabled: true