PHPackages                             rubensrocha/solvemedia-captcha - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. rubensrocha/solvemedia-captcha

ActiveLibrary

rubensrocha/solvemedia-captcha
==============================

Solve Media Captcha For Laravel.

0.5(5y ago)0336↓100%1MITPHPPHP &gt;=5.5.5

Since Nov 6Pushed 5y ago1 watchersCompare

[ Source](https://github.com/rubensrocha/solvemedia-captcha)[ Packagist](https://packagist.org/packages/rubensrocha/solvemedia-captcha)[ RSS](/packages/rubensrocha-solvemedia-captcha/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (4)Dependencies (1)Versions (5)Used By (0)

Solve Media Captcha for Laravel
===============================

[](#solve-media-captcha-for-laravel)

Package integration of SolveMedia captcha for Laravel

Installation
------------

[](#installation)

```
composer require rubensrocha/solvemedia-captcha

```

Laravel 5 - 6
-------------

[](#laravel-5---6)

### Setup

[](#setup)

***NOTE*** This package supports the auto-discovery feature of Laravel 5.5, So skip these `Setup` instructions if you're using Laravel 5.5 and above.

In `app/config/app.php` add the following :

1- The ServiceProvider to the providers array :

```
Rubensrocha\SolveMediaCaptcha\SolveMediaCaptchaServiceProvider::class,
```

2- The class alias to the aliases array :

```
'SolveMediaCaptcha' => Rubensrocha\SolveMediaCaptcha\Facades\SolveMediaCaptcha::class,
```

3- Publish the config file

```
php artisan vendor:publish --provider="Rubensrocha\SolveMediaCaptcha\SolveMediaCaptchaServiceProvider"

```

### Configuration

[](#configuration)

Add these fields in **.env** file :

```
SOLVEMEDIA_CKEY="your_public_key"
SOLVEMEDIA_VKEY="your_verification_key"
SOLVEMEDIA_HKEY="your_authentication_key"
SOLVEMEDIA_SSL=TRUE

```

You can obtain them from [here](https://portal.solvemedia.com)

#### Display CAPTCHA

[](#display-captcha)

```
{!! SolveMediaCaptcha::display() !!}
```

#### Validation

[](#validation)

Add `'adcopy_response' => 'required|solvemediacaptcha'` to rules array :

```
$validate = Validator::make(Input::all(), [
	'adcopy_response' => 'required|solvemediacaptcha'
]);
```

##### Custom Validation Message

[](#custom-validation-message)

Add the following values to the `custom` array in the `validation` language file :

```
'custom' => [
    'adcopy_response' => [
        'required' => 'Please verify that you are not a robot.',
        'solvemediacaptcha' => 'Captcha error! try again later or contact site admin.',
    ],
],
```

Then check for captcha errors in the `Form` :

```
@if ($errors->has('adcopy_response'))

        {{ $errors->first('adcopy_response') }}

@endif
```

Packages used as reference for creating this package.
-----------------------------------------------------

[](#packages-used-as-reference-for-creating-this-package)

anhskohbo/no-captcha =&gt;

traderinteractive/solvemedia-client-php =&gt;

Contribute
----------

[](#contribute)

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity45

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~104 days

Total

4

Last Release

2063d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/b50b97a25e6a67c73462ac9e598847373148db5a04b54c8543ba5bc036c20a71?d=identicon)[rubensrocha](/maintainers/rubensrocha)

---

Top Contributors

[![rubensrocha](https://avatars.githubusercontent.com/u/10297656?v=4)](https://github.com/rubensrocha "rubensrocha (14 commits)")

---

Tags

laravelcaptchalaravel5laravel6laravel8laravel7solvemedia-captchasolve media

### Embed Badge

![Health badge](/badges/rubensrocha-solvemedia-captcha/health.svg)

```
[![Health](https://phpackages.com/badges/rubensrocha-solvemedia-captcha/health.svg)](https://phpackages.com/packages/rubensrocha-solvemedia-captcha)
```

###  Alternatives

[anhskohbo/no-captcha

No CAPTCHA reCAPTCHA For Laravel.

1.8k8.5M33](/packages/anhskohbo-no-captcha)[onecentlin/laravel-adminer

Laravel Adminer Database Manager

260491.1k3](/packages/onecentlin-laravel-adminer)[salmanzafar/laravel-mqtt

A simple Laravel Library to connect/publish/subscribe to MQTT broker

106153.1k1](/packages/salmanzafar-laravel-mqtt)[salmanzafar/laravel-geo-fence

A Laravel Library to calculate distance between two longitude and latitudes

157.3k1](/packages/salmanzafar-laravel-geo-fence)[salmanzafar/laravel-geocode

A Laravel Library to find Lat and Long of a given Specific Address

153.9k](/packages/salmanzafar-laravel-geocode)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
