Download the PHP package kield-01/anticaptcha-composer without Composer
On this page you can find all versions of the php package kield-01/anticaptcha-composer. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download kield-01/anticaptcha-composer
More information about kield-01/anticaptcha-composer
Files in kield-01/anticaptcha-composer
Download kield-01/anticaptcha-composer
More information about kield-01/anticaptcha-composer
Files in kield-01/anticaptcha-composer
Vendor kield-01
Package anticaptcha-composer
Short Description Captcha solver, provided by anti-captcha.com and remade by me for composer users
License GPL
Package anticaptcha-composer
Short Description Captcha solver, provided by anti-captcha.com and remade by me for composer users
License GPL
Please rate this library. Is it a good library?
Informations about the package anticaptcha-composer
How to install this package?
You can install this package via composer
:
composer require kield-01/anticaptcha-composer
Important Notes
For now, this package is on testing
Example
<?php
namespace AntiCaptcha;
use AntiCaptcha\ImageToText;
$_img_to_text = new ImageToText();
$_img_to_text->setKey('anticaptcha_key');
$_img_to_text->setFile(WWW_ROOT . 'capcha.jpg');
$_task = 0;
$_result = 0;
while (!$_img_to_text->createTask()) {
$_img_to_text->createTask();
}
$_task = $_img_to_text->getTaskId();
while (!$_img_to_text->waitForResult()) {
$_img_to_text->waitForResult();
}
$_result = $_img_to_text->getTaskSolution();
dump("TaskID : {$_task} : {$_result}");
All versions of anticaptcha-composer with dependencies
PHP Build Version
Package Version
Requires
fabpot/goutte Version
^3.2
The package kield-01/anticaptcha-composer contains the following files
Loading the files please wait ....