antoinelemaire / sqreen-php-client
Sqreen library for PHP
Installs: 8 596
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 1
Open Issues: 1
Requires
- guzzlehttp/guzzle: ^6.3
- psr/http-message: ^1.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.14
This package is auto-updated.
Last update: 2024-10-19 03:17:23 UTC
README
Usage
<?php use Sqreen\SqreenClient; $client = new SqreenClient( '1234567890123456789012', // applicationId 'login@example.org', // email 'my_beautiful_password!' // password ); // Get Security Response events $events = $client->application->getSecurityResponse(); // Stop a Security Response $securityResponseId = 'NWJlMTk2ZDdmM2Y1ZmEwMDE1MTMwMTRhOjVjM2UwZjIzMjlmMTcwMDAxZWM3NTM5MDo1YzNmNjQwNDUJyksICgnaWQnLCAnMzAzMzE3OCcpXSk6YmFjYTJiMmMxOWIwMTFlOWFlM2IwMjQyYWMxMTAwMDM'; $events = $client->application->deleteSecurityResponse($securityResponseId); ?>