{"id":20434486,"url":"https://github.com/debricked/sylius-billogram-plugin","last_synced_at":"2025-07-17T23:11:39.567Z","repository":{"id":56964489,"uuid":"145574504","full_name":"debricked/sylius-billogram-plugin","owner":"debricked","description":"Adds a Sylius gateway for Billogram.","archived":false,"fork":false,"pushed_at":"2023-04-07T06:54:23.000Z","size":57,"stargazers_count":1,"open_issues_count":8,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-05T06:32:23.071Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/debricked.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-08-21T14:20:53.000Z","updated_at":"2018-08-29T15:39:28.000Z","dependencies_parsed_at":"2024-11-15T12:31:23.042Z","dependency_job_id":null,"html_url":"https://github.com/debricked/sylius-billogram-plugin","commit_stats":{"total_commits":10,"total_committers":1,"mean_commits":10.0,"dds":0.0,"last_synced_commit":"3e04ddf6257dd5a8d3ba243984848385f447006d"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/debricked/sylius-billogram-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/debricked%2Fsylius-billogram-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/debricked%2Fsylius-billogram-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/debricked%2Fsylius-billogram-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/debricked%2Fsylius-billogram-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/debricked","download_url":"https://codeload.github.com/debricked/sylius-billogram-plugin/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/debricked%2Fsylius-billogram-plugin/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265677904,"owners_count":23810067,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-15T08:27:10.825Z","updated_at":"2025-07-17T23:11:39.524Z","avatar_url":"https://github.com/debricked.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003e\n    \u003ca href=\"https://billogram.com/\" target=\"_blank\"\u003e\n        \u003cimg src=\"https://billogram.com/static/images/billogram-og_@2X.png\" /\u003e\n    \u003c/a\u003e\n    \u003cbr /\u003e\n    \u003ca href=\"https://packagist.org/packages/debricked/sylius-billogram-plugin\" title=\"License\" target=\"_blank\"\u003e\n        \u003cimg src=\"https://img.shields.io/packagist/l/debricked/sylius-billogram-plugin.svg\" /\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://packagist.org/packages/debricked/sylius-billogram-plugin\" title=\"Version\" target=\"_blank\"\u003e\n        \u003cimg src=\"https://img.shields.io/packagist/v/debricked/sylius-billogram-plugin.svg\" /\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://travis-ci.com/debricked/sylius-billogram-plugin\" title=\"Build status\" target=\"_blank\"\u003e\n        \u003cimg src=\"https://travis-ci.com/debricked/sylius-billogram-plugin.svg?branch=master\" /\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://packagist.org/packages/debricked/sylius-billogram-plugin\" title=\"Total Downloads\" target=\"_blank\"\u003e\n        \u003cimg src=\"https://poser.pugx.org/debricked/sylius-billogram-plugin/downloads\" /\u003e\n    \u003c/a\u003e\n\u003c/h1\u003e\n\n## Overview\n\nThis plugin allows you to integrate Billogram invoice with Sylius platform app. It includes all Sylius and Billogram invoice features.\n\nThe plugin was developed with inspiration from BitBagCommerce's [SyliusMolliePlugin](https://github.com/BitBagCommerce/SyliusMolliePlugin).\n\n## Installation\n```bash\n$ composer require debricked/sylius-billogram-plugin\n```\n    \nAdd plugin dependencies to your AppKernel.php file:\n\n```php\npublic function registerBundles()\n{\n    return array_merge(parent::registerBundles(), [\n        ...\n        \n        new \\Debricked\\SyliusBillogramPlugin\\DebrickedSyliusBillogramPlugin(),\n    ]);\n}\n```\n\nImport required config in your `app/config/config.yml` file:\n\n```yaml\n# app/config/config.yml\n\nimports:\n    ...\n    \n    - { resource: \"@DebrickedSyliusBillogramPlugin/Resources/config/config.yml\" }\n```\n\nImport routing by adding the following **to the top** of your `app/config/routing.yml` file:\n\n```yaml\n# app/config/routing.yml\n\ndebricked_sylius_billogram_plugin:\n    resource: \"@DebrickedSyliusBillogramPlugin/Resources/config/routing.yml\"\n```\n\nUpdate your database\n\n```\n$ bin/console doctrine:migrations:diff\n$ bin/console doctrine:migrations:migrate\n```\n\n**Note:** If you are running it on production, add the `-e prod` flag to this command.\n\n## Customization\n\n### Available services you can [decorate](https://symfony.com/doc/current/service_container/service_decoration.html) and forms you can [extend](http://symfony.com/doc/current/form/create_form_type_extension.html)\n\nRun the below command to see what Symfony services are shared with this plugin:\n \n```bash\n$ bin/console debug:container debricked_sylius_billogram_plugin\n```\n\n## Testing\n\n```bash\n$ composer install\n$ cd tests/Application\n$ yarn install\n$ yarn run gulp\n$ bin/console assets:install web -e test\n$ bin/console doctrine:database:create -e test\n$ bin/console doctrine:schema:create -e test\n$ bin/console server:run 127.0.0.1:8080 -d web -e test\n$ open http://localhost:8080\n$ billogram_api_username=\"your_sandbox_username\" billogram_api_password=\"your_sandbox_api_key\" bin/behat\n$ billogram_api_username=\"your_sandbox_username\" billogram_api_password=\"your_sandbox_api_key\" bin/phpspec run\n```\n\n## Contribution\n\nLearn more about our contribution workflow on http://docs.sylius.org/en/latest/contributing/.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdebricked%2Fsylius-billogram-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdebricked%2Fsylius-billogram-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdebricked%2Fsylius-billogram-plugin/lists"}