PHPackages                             olragon/laravel-openssl-encryption - 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. [Security](/categories/security)
4. /
5. olragon/laravel-openssl-encryption

ActiveLibrary[Security](/categories/security)

olragon/laravel-openssl-encryption
==================================

Laravel 4 encryption package that uses the PHP openssl extension

1.0(12y ago)016MITPHPPHP &gt;=5.3.0

Since May 31Pushed 11y ago1 watchersCompare

[ Source](https://github.com/olragon/laravel-openssl-encryption)[ Packagist](https://packagist.org/packages/olragon/laravel-openssl-encryption)[ RSS](/packages/olragon-laravel-openssl-encryption/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (2)Versions (2)Used By (0)

laravel-openssl-encryption
==========================

[](#laravel-openssl-encryption)

Laravel 4 encryption package that uses the PHP **openssl** extension.

It can replace the default Laravel 4 encryption core package that uses the PHP **mcrypt** extension.

It has been created to run Laravel 4 apps on the [Google App Engine for PHP](https://developers.google.com/appengine/docs/php/) platform that currently (may 2013) does not support the mcrypt extension.

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

[](#installation)

Add the neoxia/laravel-openssl-encryption package to your composer.json file.

```
"require": {
	"laravel/framework": "4.0.*",
	"neoxia/laravel-openssl-encryption": "1.0.*"
},

```

Install the package.

```
$ php composer.phar install

```

In the `app/config/app.php` file, register the `LaravelOpensslEncryptionServiceProvider` and comment the default `EncryptionServiceProvider`.

```
'providers' => array(

	...
	//'Illuminate\Encryption\EncryptionServiceProvider',
	'Neoxia\LaravelOpensslEncryption\LaravelOpensslEncryptionServiceProvider',
	...

```

One more thing ...

Currently, Laravel 4 checks if the PHP **mcrypt** extension is loaded and die if it is not !
So, to complete the installation, we have to bypass this check.
But unfortunately, this check is done in the `Illuminate\Foundation\start.php` script, at the heart of the framework bootstrap process.

To bypass the check, change the `start.php` script in the `vendor\laravel\framework\src\Illuminate\Foundation` folder as follow.

```
if ( false and ! extension_loaded('mcrypt'))
{
	die('Laravel requires the Mcrypt PHP extension.'.PHP_EOL);

	exit(1);
}

```

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 78.6% 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

Unknown

Total

1

Last Release

4729d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/282f2e37d92c14a4f2dfbb5e1b1e22d7903613e845ec2a8d05687c77f1e4847d?d=identicon)[olragon](/maintainers/olragon)

---

Top Contributors

[![gmergoil](https://avatars.githubusercontent.com/u/476449?v=4)](https://github.com/gmergoil "gmergoil (11 commits)")[![olragon](https://avatars.githubusercontent.com/u/47636?v=4)](https://github.com/olragon "olragon (3 commits)")

---

Tags

laravelopenssl

### Embed Badge

![Health badge](/badges/olragon-laravel-openssl-encryption/health.svg)

```
[![Health](https://phpackages.com/badges/olragon-laravel-openssl-encryption/health.svg)](https://phpackages.com/packages/olragon-laravel-openssl-encryption)
```

###  Alternatives

[tzsk/otp

A secure, database-free One-Time Password (OTP) generator and verifier for PHP and Laravel.

241641.4k1](/packages/tzsk-otp)[dgtlss/warden

A Laravel package that proactively monitors your dependencies for security vulnerabilities by running automated composer audits and sending notifications via webhooks and email

8745.6k](/packages/dgtlss-warden)[ercsctt/laravel-file-encryption

Secure file encryption and decryption for Laravel applications

642.6k](/packages/ercsctt-laravel-file-encryption)[laragear/poke

Keep your forms alive, avoid TokenMismatchException by gently poking your Laravel app

2211.5k](/packages/laragear-poke)

PHPackages © 2026

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