PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of Kacper Rowinski   PHP MySQL Replication   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP MySQL Replication
Client to get MySQL replication events in pure PHP
Author: By
Last change: New release (#104)

* - Change: drop support for < 8.2
- Change: moved to enums, promoted properties
- Added: logger for more socket info
- Added: slave_uuid support
- Change: config no longer static
- Chore: typos in README/code
- Chore: replace/remove old urls from code
- Chore: changed variables to underscore
- Added: support caching_sha2_password
- Change: BinLogServerInfo static calls removed also added method getServerInfo to MySQLReplicationFactory
Date: 15 days ago
Size: 766 bytes
 

 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" bootstrap="tests/bootstrap.php" colors="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" cacheDirectory=".cache/phpunit" backupStaticProperties="false"> <testsuites> <testsuite name="Integration Suite"> <directory>./tests/Integration</directory> </testsuite> <testsuite name="Unit Suite"> <directory>./tests/Unit</directory> </testsuite> </testsuites> <source> <include> <directory suffix=".php">src/</directory> </include> </source> </phpunit>