├── .gitignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── Signer.php ├── composer.json ├── phpunit.xml.dist └── tests ├── SignerTest.php └── test.kwm /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baibaratsky/php-wmsigner/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baibaratsky/php-wmsigner/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baibaratsky/php-wmsigner/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baibaratsky/php-wmsigner/HEAD/README.md -------------------------------------------------------------------------------- /Signer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baibaratsky/php-wmsigner/HEAD/Signer.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baibaratsky/php-wmsigner/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baibaratsky/php-wmsigner/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /tests/SignerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baibaratsky/php-wmsigner/HEAD/tests/SignerTest.php -------------------------------------------------------------------------------- /tests/test.kwm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baibaratsky/php-wmsigner/HEAD/tests/test.kwm --------------------------------------------------------------------------------