Skip to content

Commit

Permalink
Rebranding the application-viewable information from 'ING' and 'iMoje…
Browse files Browse the repository at this point in the history
…' to 'imoje'
  • Loading branch information
senghe committed Nov 15, 2022
1 parent 967878d commit f81c779
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ The integration currently supports the following payment methods:
1. Cards
2. Blik
3. Pay by link
4. iMoje pay later
4. imoje pay later

# We are here to help
----

This **open-source plugin was developed to help the Sylius community** and make ING payments platform available to any Sylius store. If you have any additional questions, would like help with installing or configuring the plugin or need any assistance with your Sylius project - let us know!
This **open-source plugin was developed to help the Sylius community** and make imoje payments platform available to any Sylius store. If you have any additional questions, would like help with installing or configuring the plugin or need any assistance with your Sylius project - let us know!

[![](https://bitbag.io/wp-content/uploads/2020/10/button-contact.png)](https://bitbag.io/contact-us/?utm_source=github&utm_medium=referral&utm_campaign=plugins_ing)

Expand Down Expand Up @@ -79,11 +79,11 @@ After that, you need to add an ING payment:
![Screenshot showing payment method config in admin](doc/create_ing_method.png)

And now, you can configure your payment method in the admin panel:
* first you need to add a gateway code, for example "ing_code" and set its position.
* first you need to add a gateway code, for example "imoje_code" and set its position.


![Screenshot showing payment method config in admin](doc/details.png)
* To configure the iMoje gateway, log in to ING the admin panel.
* To configure the imoje gateway, log in to ING the admin panel.


![Screenshot showing payment method config in admin](doc/main_imoje.png)
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "bitbag/sylius-ing-plugin",
"name": "bitbag/sylius-imoje-plugin",
"type": "sylius-plugin",
"description": "Implementation ing api to sylius store",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/Provider/IngClientConfigurationProviderInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

interface IngClientConfigurationProviderInterface
{
public const FACTORY_NAME = 'bitbag_ing';
public const FACTORY_NAME = 'bitbag_imoje';

public function getPaymentMethodConfiguration(string $code): IngClientConfigurationInterface;
}
2 changes: 1 addition & 1 deletion src/Repository/PaymentMethodRepositoryInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

interface PaymentMethodRepositoryInterface
{
public const FACTORY_NAME = 'bitbag_ing';
public const FACTORY_NAME = 'bitbag_imoje';

public function findOneForIngCode(string $code): ?PaymentMethodInterface;

Expand Down
2 changes: 1 addition & 1 deletion src/Resources/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ imports:
parameters:
sylius_refund.supported_gateways:
- offline
- bitbag_ing
- bitbag_imoje

knp_snappy:
pdf:
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/config/services/forms.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
id="bitbag_sylius_ing_plugin.form.type.configuration_type"
>
<tag name="form.type"/>
<tag name="sylius.gateway_configuration_type" type="bitbag_ing" label="bitbag_sylius_ing_plugin.ui.gateway_name"/>
<tag name="sylius.gateway_configuration_type" type="bitbag_imoje" label="bitbag_sylius_ing_plugin.ui.gateway_name"/>
</service>

<service class="BitBag\SyliusIngPlugin\Form\Extension\PaymentTypeExtension"
Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/Resolver/Signature/OwnSignatureResolverTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ final class OwnSignatureResolverTest extends TestCase
{
private const PRIVATE_KEY = 'ShopKey';

private const FACTORY_NAME = 'bitbag_ing';
private const FACTORY_NAME = 'bitbag_imoje';

private RequestStack $requestStack;

Expand Down

0 comments on commit f81c779

Please sign in to comment.