Skip to content

Commit 2a8ef35

Browse files
committed
Update deps
1 parent 8c06285 commit 2a8ef35

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
[![Total Downloads][ico-packagist-download]][link-packagist-download]
99
[![Software License][ico-license]][link-licence]
1010

11-
Symfony integration for [Balikobot][link-balikobot].
11+
Symfony integration for [`inspirum/balikobot`][link-balikobot].
1212

1313
## Installation
1414

@@ -59,8 +59,8 @@ The MIT License (MIT). Please see [License File][link-licence] for more informat
5959
6060
[ico-license]: https://img.shields.io/github/license/inspirum/balikobot-php-symfony.svg?style=flat-square&colorB=blue
6161
[ico-workflow]: https://img.shields.io/github/workflow/status/inspirum/balikobot-php-symfony/Test/master?style=flat-square
62-
[ico-packagist-stable]: https://img.shields.io/packagist/v/inspirum/balikobot.svg?style=flat-square&colorB=blue
63-
[ico-packagist-download]: https://img.shields.io/packagist/dt/inspirum/balikobot.svg?style=flat-square&colorB=blue
62+
[ico-packagist-stable]: https://img.shields.io/packagist/v/inspirum/balikobot-symfony.svg?style=flat-square&colorB=blue
63+
[ico-packagist-download]: https://img.shields.io/packagist/dt/inspirum/balikobot-symfony.svg?style=flat-square&colorB=blue
6464
[ico-phpstan]: https://img.shields.io/badge/style-level%209-brightgreen.svg?style=flat-square&label=phpstan
6565
6666
[link-balikobot]: https://github.com/inspirum/balikobot-php

composer.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@
33
"description": "Symfony bundle for inspirum/balikobot library",
44
"keywords": [
55
"inspirum",
6-
"inspishop",
76
"balikobot",
87
"api-client",
98
"symfony",
109
"bundle"
1110
],
12-
"homepage": "https://github.com/inspirum/balikobot-symfony-php",
11+
"homepage": "https://github.com/inspirum/balikobot-php-symfony",
1312
"license": "MIT",
1413
"type": "library",
1514
"authors": [
@@ -29,7 +28,7 @@
2928
"symfony/http-kernel": "^6.1",
3029
"symfony/dependency-injection": "^6.1",
3130
"symfony/config": "^6.1",
32-
"inspirum/balikobot": "dev-master"
31+
"inspirum/balikobot": "^7.0"
3332
},
3433
"require-dev": {
3534
"inspirum/coding-standard": "^1.1",

src/BalikobotBundle.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ private function registerProviders(ServicesConfigurator $services): void
205205
{
206206
$services->set(DefaultCarrierProvider::class);
207207
$services->set(LiveCarrierProvider::class)->args([
208-
new Reference(InfoService::class),
208+
new Reference(SettingService::class),
209209
]);
210210
$services->alias(CarrierProvider::class, DefaultCarrierProvider::class);
211211

@@ -231,7 +231,6 @@ private function registerServices(ServicesConfigurator $services): void
231231
$services->set(DefaultInfoService::class)->args([
232232
new Reference(Client::class),
233233
new Reference(AccountFactory::class),
234-
new Reference(CarrierFactory::class),
235234
new Reference(ChangelogFactory::class),
236235
]);
237236

@@ -250,6 +249,7 @@ private function registerServices(ServicesConfigurator $services): void
250249

251250
$services->set(DefaultSettingService::class)->args([
252251
new Reference(Client::class),
252+
new Reference(CarrierFactory::class),
253253
new Reference(ServiceFactory::class),
254254
new Reference(ManipulationUnitFactory::class),
255255
new Reference(CountryFactory::class),

0 commit comments

Comments
 (0)