PHPackages                             anotherzero/laravel-openssl-encryption-4x - 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. anotherzero/laravel-openssl-encryption-4x

ActiveLibrary

anotherzero/laravel-openssl-encryption-4x
=========================================

Laravel 4 encryption package that uses the PHP openssl extension

1.0.3(8y ago)17631[1 PRs](https://github.com/anotherZero/laravel-openssl-encryption-4x/pulls)MITPHPPHP &gt;=5.3.0

Since May 31Pushed 5y ago1 watchersCompare

[ Source](https://github.com/anotherZero/laravel-openssl-encryption-4x)[ Packagist](https://packagist.org/packages/anotherzero/laravel-openssl-encryption-4x)[ RSS](/packages/anotherzero-laravel-openssl-encryption-4x/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (2)Versions (5)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 anotherzero/laravel-openssl-encryption package to your composer.json file.

```
"require": {
	"laravel/framework": "4.0.*",
	"anotherzero/laravel-openssl-encryption-4x": "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

30

—

LowBetter than 64% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity16

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity61

Established project with proven stability

 Bus Factor1

Top contributor holds 73.3% 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 ~568 days

Total

4

Last Release

3020d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/9711a0e06d604e72defd2c4a4c858e09e3478b5c0f9e095d45055b29466d1404?d=identicon)[anotherZero](/maintainers/anotherZero)

---

Top Contributors

[![gmergoil](https://avatars.githubusercontent.com/u/476449?v=4)](https://github.com/gmergoil "gmergoil (11 commits)")[![anotherZero](https://avatars.githubusercontent.com/u/1004525?v=4)](https://github.com/anotherZero "anotherZero (2 commits)")[![changwuf31](https://avatars.githubusercontent.com/u/2149047?v=4)](https://github.com/changwuf31 "changwuf31 (2 commits)")

---

Tags

laravelopenssl

### Embed Badge

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

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

###  Alternatives

[laravel/passport

Laravel Passport provides OAuth2 server support to Laravel.

3.4k85.0M529](/packages/laravel-passport)[roots/acorn

Framework for Roots WordPress projects built with Laravel components.

9682.1M97](/packages/roots-acorn)[slowlyo/owl-admin

基于 laravel、amis 开发的后台框架~

61214.2k26](/packages/slowlyo-owl-admin)

PHPackages © 2026

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