composer require scraperize/creditmutuel-scraper
// Your account username
$username = 'xxxxxxxxxx';
// Your account password
$password = 'xxxxxxxxxx';
(new CreditmutuelScraper())
->auth($username, $password)
->downloadCsv('MyPath/')
;
(new CreditmutuelScraper())
->auth($username, $password)
->downloadCsv('MyPath/', [
'xxxxxxxxxx',
'xxxxxxxxxx',
])
;
