elemento115 / bugtracker-bundle
Provides integration with the Bugtracker service API
Installs: 19
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Type:symfony-bundle
Requires
- php: >=5.6.0
- guzzlehttp/guzzle: ~6.0
- symfony/symfony: ^2.8.0
This package is not auto-updated.
Last update: 2025-03-29 05:09:12 UTC
README
Allows easy integration between Symfony and BugTracker service
Installation
- Install the bundle via composer
composer require elemento115/bugtracker-bundle
- Enable the bundle
<?php // ../app/AppKernel.php use \Symfony\Component\HttpKernel\Kernel; class AppKernel extends Kernel { public function registerBundles() { $bundles = array( // ... new Elemento115\BugtrackerBundle\BugtrackerBundle(), ); // ... return $bundles; } // ... }
- Configure the bundle
bugtracker: api_url: 'http://bugtracker.io/api/' api_user: 'api' api_password: '12345' api_version: 'v1' registries: test: environment: 'debug' token: '1509355438-59f6efae96b38'
Log what you want
Your'e ready to go. Any entry registered under "registries" should map a registry of your app created on the BugTracker service.
To send data use the dynamically created services:
<?php namespace AppBundle\Controller; use Elemento115\BugtrackerBundle\Services\ApiClient; use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; use Symfony\Bundle\FrameworkBundle\Controller\Controller; /** * Class ExampleController * @package AppBundle\Controller */ class ExampleController extends Controller { /** * @Route("/example") */ public function logAction() { /** @var ApiClient $bugTracker */ $bugTracker = $this->get('bugtracker.client.test'); // bugtracker.client.test maps to registries.test of your config.yml $bugTracker->post([ 'log' => [ 'message' => 'This is a message', 'level' => 'debug' ] ]); } }