├── .gitignore ├── .travis.yml ├── CleanTalkApi.php ├── CleanTalkValidator.php ├── README.md ├── cleantalk.class.php ├── composer.json └── tests ├── CleanTalkApiTest.php ├── CleanTalkValidatorTest.php ├── bootstrap.php └── phpunit.xml /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | Thumbs.db 3 | vendor/ 4 | composer.lock 5 | .idea/ -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanTalk/yii-antispam/HEAD/.travis.yml -------------------------------------------------------------------------------- /CleanTalkApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanTalk/yii-antispam/HEAD/CleanTalkApi.php -------------------------------------------------------------------------------- /CleanTalkValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanTalk/yii-antispam/HEAD/CleanTalkValidator.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanTalk/yii-antispam/HEAD/README.md -------------------------------------------------------------------------------- /cleantalk.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanTalk/yii-antispam/HEAD/cleantalk.class.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanTalk/yii-antispam/HEAD/composer.json -------------------------------------------------------------------------------- /tests/CleanTalkApiTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanTalk/yii-antispam/HEAD/tests/CleanTalkApiTest.php -------------------------------------------------------------------------------- /tests/CleanTalkValidatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanTalk/yii-antispam/HEAD/tests/CleanTalkValidatorTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanTalk/yii-antispam/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanTalk/yii-antispam/HEAD/tests/phpunit.xml --------------------------------------------------------------------------------