tiloweb / quipu-bundle
Add automated API integration as a Symfony Service
Installs: 44
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.3.3
- symfony/cache: ^3.2
- symfony/framework-bundle: >=3.1
This package is auto-updated.
Last update: 2025-04-16 03:00:54 UTC
README
This Bundle integrate the Quipu/Zyfro API v1 as a Symfony Service.
Requirments
- cURL
- Symfony >= 3.1
Intallation
Step 1: Download the Bundle
Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:
$ composer require tiloweb/quipu-bundle "dev-master"
This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation.
Step 2: Enable the Bundle
Then, enable the bundle by adding it to the list of registered bundles
in the app/AppKernel.php
file of your project:
<?php // app/AppKernel.php // ... class AppKernel extends Kernel { public function registerBundles() { $bundles = array( // ... new Tiloweb\QuipuBundle\QuipuBundle(), ); // ... } // ... }
Step 3: Configure Symfony
# app/config/config.yml quipu: app: "yourAppID" secret: "yourAppSecretToken"
Step 4: Enjoy !
The API is now reachable from the quipu
service in your Controller or anywhere in Symfony.
Documentation
List all the contacts
<?php // src/AppBundle/Controller/DefaultController.php public function quipuAction() { $quipu = $this->get("quipu"); dump($quipu->listContacts()); }
Create a contact
<?php // src/AppBundle/Controller/DefaultController.php public function quipuAction() { $quipu = $this->get("quipu"); dump($quipu->createContact(array( 'name' => 'New Contact', // Required 'email' => 'fakemail@test.com', 'contry_code' => 'fr' // Required ))); }
Get a contact
<?php // src/AppBundle/Controller/DefaultController.php public function quipuAction() { $quipu = $this->get("quipu"); dump($quipu->getContact(13423); }
Update a contact
<?php // src/AppBundle/Controller/DefaultController.php public function quipuAction() { $quipu = $this->get("quipu"); dump($quipu->updateContact(13423, array( 'name' => 'New name', 'email' => 'anotheremail@test.com' ))); }
List all the invoices
<?php // src/AppBundle/Controller/DefaultController.php public function quipuAction() { $quipu = $this->get("quipu"); dump($quipu->listInvoices()); }
List all the invoices of a contact
<?php // src/AppBundle/Controller/DefaultController.php public function quipuAction() { $quipu = $this->get("quipu"); dump($quipu->listInvoices(12345)); }
Create an invoice
<?php // src/AppBundle/Controller/DefaultController.php public function quipuAction() { $quipu = $this->get("quipu"); $contactID = 12345; $datetime = new \DateTime(); $invoice = array( 'kind' => 'income', // Required 'issue_date' => $datetime->format('Y-m-d') // Required ); $items = array( array( 'concept' => 'Product 1', 'unitary_amount' => "10", 'quantity' => 30, 'vat_percent' => 20, 'retention_percent' => 0 ), array( 'concept' => 'Product 2', 'unitary_amount' => "5", 'quantity' => 10, 'vat_percent' => 20, 'retention_percent' => 0 ) ); dump($quipu->createInvoice($contactID, $invoice, $items)); }
Get an invoice
<?php // src/AppBundle/Controller/DefaultController.php public function quipuAction() { $quipu = $this->get("quipu"); dump($quipu->getInvoice(13423); }
Update a contact
<?php // src/AppBundle/Controller/DefaultController.php public function quipuAction() { $quipu = $this->get("quipu"); $datetime = new DateTime(); dump($quipu->updateInvoice(13423, array( 'paid_at' => $datetime->format('Y-m-d') ))); }