gitextract_4ybaawxs/ ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── lib/ │ ├── Exceptions/ │ │ ├── ConnectionError.php │ │ ├── FilterArgumentError.php │ │ ├── UnrecognizedArgument.php │ │ └── UnrecognizedCommand.php │ ├── Providers/ │ │ ├── TADSoap.php │ │ └── TADZKLib.php │ ├── TAD.php │ ├── TADFactory.php │ └── TADResponse.php ├── phpunit.xml └── test/ ├── helpers/ │ └── ClassReflection.php └── lib/ ├── Providers/ │ ├── TADSoapTest.php │ └── TADZKLibTest.php ├── RealTADTest.php ├── TADResponseTest.php └── TADTest.php