File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11CHANGELOG
22=========
33
4- 3.4.0
4+ 3.3.0 (2025-05-23)
55------------------
66
77* Added support for the ` /billing_phone/matches_postal ` and
88 ` /shipping_phone/matches_postal ` outputs. These are available as the
99 ` matchesPostal ` property on ` MaxMind\MinFraud\Model\Phone ` .
1010* Added ` cryptomus ` to the payment processor validation.
11-
12- 3.3.0
13- ------------------
14-
1511* ` \MaxMind\MinFraud ` now implements ` JsonSerializable ` . This returns an
1612 array containing the contents of the request in a sub-array as well as
1713 the value of the ` locales ` and ` hashEmail ` options. Pull request by Noé
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ You should now have the file `composer.phar` in your project directory.
2424Run in your project root:
2525
2626```
27- php composer.phar require maxmind/minfraud:^3.2 .0
27+ php composer.phar require maxmind/minfraud:^3.3 .0
2828```
2929
3030You should now have the files ` composer.json ` and ` composer.lock ` as well as
Original file line number Diff line number Diff line change @@ -47,10 +47,10 @@ php composer.phar update --no-dev
4747perl -pi -e " s/(?<=const VERSION = ').+?(?=';)/$tag /g" src/MinFraud/ServiceClient.php
4848perl -pi -e " s{(?<=php composer\.phar require maxmind\/minfraud:).+}{^$version }g" README.md
4949
50- box_phar_hash=' 8d12a7d69a5003a80bd603ea95a8f3dcea30b9a2ad84cd7cb15b8193929def9e box.phar'
50+ box_phar_hash=' aa0966319f709e74bf2bf1d58ddb987903ae4f6d0a9d335ec2261813c189f7fc box.phar'
5151
5252if ! echo " $box_phar_hash " | sha256sum -c; then
53- wget -O box.phar " https://github.com/box-project/box/releases/download/4.6.1 /box.phar"
53+ wget -O box.phar " https://github.com/box-project/box/releases/download/4.6.6 /box.phar"
5454fi
5555
5656echo " $box_phar_hash " | sha256sum -c
@@ -95,10 +95,10 @@ if [ -n "$(git status --porcelain)" ]; then
9595fi
9696
9797# Using Composer is possible, but they don't recommend it.
98- phpdocumentor_phar_hash=' 68e860b191799efdd7582b2b5fb738ea4dd743bb0476257608f0b22155d155f3 phpDocumentor.phar'
98+ phpdocumentor_phar_hash=' 5223cc8455d53c51fcd5a3d4ac7817acdbec3f3e325981688d345f2468097230 phpDocumentor.phar'
9999
100100if ! echo " $phpdocumentor_phar_hash " | sha256sum -c; then
101- wget -O phpDocumentor.phar https://github.com/phpDocumentor/phpDocumentor/releases/download/v3.6.0 /phpDocumentor.phar
101+ wget -O phpDocumentor.phar https://github.com/phpDocumentor/phpDocumentor/releases/download/v3.7.1 /phpDocumentor.phar
102102fi
103103
104104echo " $phpdocumentor_phar_hash " | sha256sum -c
Original file line number Diff line number Diff line change 99
1010abstract class ServiceClient
1111{
12- public const VERSION = 'v3.2 .0 ' ;
12+ public const VERSION = 'v3.3 .0 ' ;
1313
1414 /**
1515 * @var Client
You can’t perform that action at this time.
0 commit comments