Giter Club home page Giter Club logo

fraudlabspro-php's Introduction

FraudLabs Pro PHP SDK

This PHP module enables user to easily implement fraud detection feature into their solution using the API from https://www.fraudlabspro.com.

Below are the features of this PHP module:

  • Fraud analysis and scoring
  • IP address geolocation & proxy validation
  • Email address validation
  • Credit card issuing bank validation
  • Transaction velocity validation
  • Device transaction validation
  • Blacklist validation
  • Custom rules trigger
  • Email notification of fraud orders
  • Mobile app notification of fraud orders

This module requires API key to function. You may subscribe a free API key at https://www.fraudlabspro.com

Developer Documentation

To learn more about installation, usage, and code examples, please visit the developer documentation at https://fraudlabspro-php.readthedocs.io/en/latest/index.html.

Reference

Feedback Status

Feedback Status Description
FraudLabsPro\FraudValidation::APPROVE Approves an order that under review status.
FraudLabsPro\FraudValidation::REJECT Rejects an order than under review status.
FraudLabsPro\FraudValidation::REJECT_BLACKLIST Rejects and blacklists an order.

LICENCE

See the LICENSE file.

fraudlabspro-php's People

Contributors

chrislim2888 avatar fraudlabspro avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

fraudlabspro-php's Issues

number_format used incorrectly in Order.php

Line 67 in Order.php needs to be fixed so that the thousands separator is not used, but the decimal separator is used.

Needs to change from:
'amount' => (isset($params['order']['amount'])) ? number_format($params['order']['amount'], 2, '', '.') : 0,

to

'amount' => (isset($params['order']['amount'])) ? number_format($params['order']['amount'], 2, '.', '') : 0,

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.