thomas-sens/sicoob-bundle

Installs: 3

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:symfony-bundle

dev-main 2025-03-22 14:26 UTC

This package is auto-updated.

Last update: 2025-06-22 15:02:33 UTC


README

Sicoob integration for Symfony

Instalation:

composer require thomas-sens/sicoob-bundle 

Generate a parameters file:

php bin/console config:dump-reference SicoobBundle > config/packages/sicoob.yaml

Example: src/config/packages/sicoob.yaml

sicoob:
    api_url:              'https://sandbox.sicoob.com.br/sicoob/sandbox/'
    api_token:            1301865f-c6bc-38f3-9f49-666dbcfc59c3
    client_id:            9b5e603e428cc477a2841e2683c92d21 

Call Example:

class SicoobController extends AbstractController
{
    #[Route('/sicoob', name: 'app_sicoob')]
    public function index(SicoobClient $sicoob): Response
    {
        ... AGUARDANDO 
    }
}