nicosomb/wallabag-carbondate-bundle

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

Maintainers

👁 nicosomb

Package info

github.com/nicosomb/wallabag-carbondate-bundle

Type:symfony-bundle

pkg:composer/nicosomb/wallabag-carbondate-bundle

Statistics

Installs: 42

Dependents: 0

Suggesters: 0

Stars: 6

Open Issues: 0

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

Requires

  • php: >=5.3.3

Requires (Dev)

None

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT 2d0e014c6b1057067972cd2aca372f4c3b08cbb0

bundlesymfony3wallabagwallabag-plugincarbondate

This package is auto-updated.

Last update: 2026-06-05 02:21:52 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