PHPackages                             jorijn/ynab-bunq-connector-bundle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. jorijn/ynab-bunq-connector-bundle

AbandonedArchivedLibrary

jorijn/ynab-bunq-connector-bundle
=================================

A Symfony 3.4 LTS compatible Bundle for uploading payments from the bunq Bundle to YNAB

v1.0.1(6y ago)5492[1 PRs](https://github.com/Jorijn/ynab-bunq-connector-bundle/pulls)MITPHPPHP ^7.1

Since Apr 17Pushed 4y ago2 watchersCompare

[ Source](https://github.com/Jorijn/ynab-bunq-connector-bundle)[ Packagist](https://packagist.org/packages/jorijn/ynab-bunq-connector-bundle)[ RSS](/packages/jorijn-ynab-bunq-connector-bundle/feed)WikiDiscussions master Synced yesterday

READMEChangelog (1)Dependencies (6)Versions (6)Used By (0)

YNAB bunq Connector Bundle
==========================

[](#ynab-bunq-connector-bundle)

A Symfony 3.4 LTS compatible Bundle for uploading payments from the bunq Bundle to YNAB

Realtime connection between bunq and YNAB
-----------------------------------------

[](#realtime-connection-between-bunq-and-ynab)

Uses [symfony-bunq-bundle](https://github.com/Jorijn/symfony-bunq-bundle) to subscribe to bank account mutation events and creates transactions in YNAB.

*More documentation coming soon, work in progress*

Instructions
------------

[](#instructions)

### Environment

[](#environment)

I used to make this instructions an ubuntu machine from Amazon EC2.

Maybe you you need to change something to get it working.

Make sure you have SSH access to the machine you are trying to access. It will need a HTTPS web server with PHP installed (PHP-cli also). And you will need a DNS to allow Bunq to send you the notifications.

### Steps

[](#steps)

1. Install apache + php;

    You can follow the instructions from:
2. Enable HTTPS support:

    Create a new certificate and follow the instructions from:
3. Create the symfony project that will hold the bundle:

    ```
    $ composer create-project symfony/framework-standard-edition bunq-ynab
    ```
4. Require the bundle:

    ```
    $composer require jorijn/ynab-bunq-connector-bundle
    ```

    Maybe you will need to use *--ignore-platform-reqs*
5. Configure the symfony installation

    Take care, maybe you will need to override some configuration and choose the best place to put it. Below the list of files that need to be updated and the key=&gt;values.

    1. **/app/config/services.yml**

        ```
        parameters:
            router.request_context.host: 'www.your-url-here.com'
            router.request_context.scheme: 'https'
        ```
    2. **/app/config/routing.yml**

        ```
        symfony_bunq.callback_url:
            path:     /bunq/callback
            defaults: { _controller: JorijnSymfonyBunqBundle:Bunq:callback }
        ```
    3. **/app/config/config.yml**

        ```
        jorijn_ynab_bunq_connector:
            connections:
            -
                bunq_account_id:      **change_me**
                ynab_budget_id:       **change_me**
                ynab_account_id:      **change_me**
            api_key: **change_me**
        ```
6. Enable the symfony bundles:

    **/app/AppKernel.php** :

    ```
