PHP code example of inspirum / balikobot-symfony
1. Go to this page and download the library: Download inspirum/balikobot-symfony library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
inspirum / balikobot-symfony example snippets
return [
// ...
Inspirum\Balikobot\Integration\Symfony\BalikobotBundle::class => ['all' => true],
];
/** @var Inspirum\Balikobot\Service\Registry\ServiceContainerRegistry $registry */
// get package service for default (or first) connection
$packageService = $registry->get()->getPackageService();
// get branch service for "client3" connection
$packageService = $registry->get('client3')->getBranchService();
/** @var Inspirum\Balikobot\Service\PackageService $packageService */
$packageService->addPackages(...)
/** @var Inspirum\Balikobot\Service\BranchService $branchService */
$branchService->getBranches(...)