├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── alipay_donate.jpg ├── composer.json ├── examples ├── index.html └── login.php ├── phpunit.xml ├── src ├── TekinTCaptcha │ ├── RequestMethod.php │ ├── RequestMethod │ │ ├── Curl.php │ │ ├── CurlGet.php │ │ ├── CurlPost.php │ │ ├── Get.php │ │ ├── Post.php │ │ ├── Socket.php │ │ └── SocketPost.php │ ├── RequestParameters.php │ ├── Response.php │ └── TekinTCaptcha.php └── autoload.php └── tests └── TekinTCaptcha ├── RequestMethod ├── CurlPostTest.php ├── PostTest.php └── SocketPostTest.php ├── RequestParametersTest.php ├── ResponseTest.php └── TekinTCaptchaTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekintian/TekinTCaptcha/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekintian/TekinTCaptcha/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekintian/TekinTCaptcha/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekintian/TekinTCaptcha/HEAD/README.md -------------------------------------------------------------------------------- /alipay_donate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekintian/TekinTCaptcha/HEAD/alipay_donate.jpg -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekintian/TekinTCaptcha/HEAD/composer.json -------------------------------------------------------------------------------- /examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekintian/TekinTCaptcha/HEAD/examples/index.html -------------------------------------------------------------------------------- /examples/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekintian/TekinTCaptcha/HEAD/examples/login.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekintian/TekinTCaptcha/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/TekinTCaptcha/RequestMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekintian/TekinTCaptcha/HEAD/src/TekinTCaptcha/RequestMethod.php -------------------------------------------------------------------------------- /src/TekinTCaptcha/RequestMethod/Curl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekintian/TekinTCaptcha/HEAD/src/TekinTCaptcha/RequestMethod/Curl.php -------------------------------------------------------------------------------- /src/TekinTCaptcha/RequestMethod/CurlGet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekintian/TekinTCaptcha/HEAD/src/TekinTCaptcha/RequestMethod/CurlGet.php -------------------------------------------------------------------------------- /src/TekinTCaptcha/RequestMethod/CurlPost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekintian/TekinTCaptcha/HEAD/src/TekinTCaptcha/RequestMethod/CurlPost.php -------------------------------------------------------------------------------- /src/TekinTCaptcha/RequestMethod/Get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekintian/TekinTCaptcha/HEAD/src/TekinTCaptcha/RequestMethod/Get.php -------------------------------------------------------------------------------- /src/TekinTCaptcha/RequestMethod/Post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekintian/TekinTCaptcha/HEAD/src/TekinTCaptcha/RequestMethod/Post.php -------------------------------------------------------------------------------- /src/TekinTCaptcha/RequestMethod/Socket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekintian/TekinTCaptcha/HEAD/src/TekinTCaptcha/RequestMethod/Socket.php -------------------------------------------------------------------------------- /src/TekinTCaptcha/RequestMethod/SocketPost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekintian/TekinTCaptcha/HEAD/src/TekinTCaptcha/RequestMethod/SocketPost.php -------------------------------------------------------------------------------- /src/TekinTCaptcha/RequestParameters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekintian/TekinTCaptcha/HEAD/src/TekinTCaptcha/RequestParameters.php -------------------------------------------------------------------------------- /src/TekinTCaptcha/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekintian/TekinTCaptcha/HEAD/src/TekinTCaptcha/Response.php -------------------------------------------------------------------------------- /src/TekinTCaptcha/TekinTCaptcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekintian/TekinTCaptcha/HEAD/src/TekinTCaptcha/TekinTCaptcha.php -------------------------------------------------------------------------------- /src/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekintian/TekinTCaptcha/HEAD/src/autoload.php -------------------------------------------------------------------------------- /tests/TekinTCaptcha/RequestMethod/CurlPostTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekintian/TekinTCaptcha/HEAD/tests/TekinTCaptcha/RequestMethod/CurlPostTest.php -------------------------------------------------------------------------------- /tests/TekinTCaptcha/RequestMethod/PostTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekintian/TekinTCaptcha/HEAD/tests/TekinTCaptcha/RequestMethod/PostTest.php -------------------------------------------------------------------------------- /tests/TekinTCaptcha/RequestMethod/SocketPostTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekintian/TekinTCaptcha/HEAD/tests/TekinTCaptcha/RequestMethod/SocketPostTest.php -------------------------------------------------------------------------------- /tests/TekinTCaptcha/RequestParametersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekintian/TekinTCaptcha/HEAD/tests/TekinTCaptcha/RequestParametersTest.php -------------------------------------------------------------------------------- /tests/TekinTCaptcha/ResponseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekintian/TekinTCaptcha/HEAD/tests/TekinTCaptcha/ResponseTest.php -------------------------------------------------------------------------------- /tests/TekinTCaptcha/TekinTCaptchaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tekintian/TekinTCaptcha/HEAD/tests/TekinTCaptcha/TekinTCaptchaTest.php --------------------------------------------------------------------------------