Skip to content

Commit

Permalink
#6 Remove ideal issuer support from package
Browse files Browse the repository at this point in the history
  • Loading branch information
tdwesten committed Jan 8, 2025
1 parent 10385e3 commit 5f4e170
Show file tree
Hide file tree
Showing 18 changed files with 1,670 additions and 2,198 deletions.
36 changes: 1 addition & 35 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,7 @@ The create-payment-intent url is a signed url can be found in the response of th
"attributes": {
"payment_method": "mollie",
"meta": {
"payment_method_type": "ideal",
"payment_method_issuer": "ideal_ABNANL2A"
"payment_method_type": "ideal"
}
}
}
Expand Down Expand Up @@ -233,39 +232,6 @@ Example response:
}
```

### POST /api/v1/payment-issuers

Returns a list of available payment issuers for ideal payments, including the issuer ID, issuer name and more. See the [Mollie API documentation](https://docs.mollie.com/reference/v2/methods-api/list-methods#includes) for more information.

Example response:

```json
{
"jsonapi": {
"version": "1.0"
},
"data": [
{
"type": "payment-issuers",
"id": "ideal_ABNANL2A",
"attributes": {
"resource": "issuer",
"name": "ABN AMRO",
"issuer_id": "ideal_ABNANL2A",
"image": [
"https://www.mollie.com/external/icons/ideal-issuers/ABNANL2A.png",
"https://www.mollie.com/external/icons/ideal-issuers/ABNANL2A%402x.png",
"https://www.mollie.com/external/icons/ideal-issuers/ABNANL2A.svg"
]
},
"links": {
"self": "https://api.monoz.test/api/v1/payment-issuers/ideal_ABNANL2A"
}
}
]
}
```

### Security

If you discover any security related issues, please email security[at]pixelpillow.nl instead of using the issue tracker.
Expand Down
6 changes: 2 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
],
"homepage": "https://github.com/pixelpillow/lunar-api-mollie-adapter",
"license": "MIT",
"version": "0.1.9",
"version": "0.2.0",
"authors": [
{
"name": "Thomas van der Westen",
Expand All @@ -22,13 +22,11 @@
"require": {
"php": "^8.2",
"dystcz/lunar-api": "^0.8",
"illuminate/contracts": "^10.0",
"mollie/laravel-mollie": "^2.25"
"mollie/laravel-mollie": "^3.0"
},
"require-dev": {
"laravel/pint": "^1.13",
"nunomaduro/collision": "^7.8",
"nunomaduro/larastan": "^2.0.1",
"orchestra/testbench": "^8.8",
"pestphp/pest": "^2.0",
"pestphp/pest-plugin-arch": "^2.0",
Expand Down
Loading

0 comments on commit 5f4e170

Please sign in to comment.