-1
I want to put the credentials in a php file and I will use the following solution to deploy in production:
config.php in the local environment
$username = 'adm';
$senha = 'aaa';
- push to the repository
- pull from repository to production server
- script execution to replace Adm and aaa with production bank credentials
My point is:
This can be hacked somehow and credentials stolen?
if you create private even have a security, if it is public then everyone sees! Usually no sensitive data is placed, which in the case password is a sensitive data !!!
– novic