Working with sensitive information
Supporting Payum
Payum is an MIT-licensed open source project with its ongoing development made possible entirely by the support of community and our customers. If you'd like to join them, please consider:
Working with sensitive information
All sensitive information (credit card number, cvv, card owner name etc) should be passed directly to a gateway. It is not allowed to store such information even temporally. If you want to store it you have to do it according to PCI SSC Data Security Standards. It is very a challenging task and it is out of scope of this chapter. Here we describe some practices that helps you not to accidentally store sensitive info anywhere.
All info like credit cards have to be wrapped by SensitiveValue
class.
All supported gateways are aware of this class and will handle it safely.
Back to index.
Last updated