1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-19 16:01:34 +02:00

Remove mcrypt #1188

This commit is contained in:
Hillel Coren 2016-12-20 16:28:44 +02:00
parent 312e8e8e48
commit cd97904b75
4 changed files with 3 additions and 6 deletions

View File

@ -28,7 +28,6 @@ Watch our [video on YouTube](https://www.youtube.com/watch?v=xHGKvadapbA) to get
## Requirements ## Requirements
* PHP >= 5.5.9 * PHP >= 5.5.9
* MCrypt PHP Extension
* MySQL * MySQL
## Recommended Providers ## Recommended Providers

View File

@ -279,7 +279,7 @@ class AppController extends BaseController
// legacy fix: check cipher is in .env file // legacy fix: check cipher is in .env file
if ( ! env('APP_CIPHER')) { if ( ! env('APP_CIPHER')) {
$fp = fopen(base_path().'/.env', 'a'); $fp = fopen(base_path().'/.env', 'a');
fwrite($fp, "\nAPP_CIPHER=rijndael-128"); fwrite($fp, "\nAPP_CIPHER=AES-256-CBC");
fclose($fp); fclose($fp);
} }

View File

@ -14,7 +14,6 @@
], ],
"require": { "require": {
"php": ">=5.5.9", "php": ">=5.5.9",
"ext-mcrypt": "*",
"ext-gmp": "*", "ext-gmp": "*",
"ext-gd": "*", "ext-gd": "*",
"turbo124/laravel-push-notification": "dev-laravel5", "turbo124/laravel-push-notification": "dev-laravel5",

5
composer.lock generated
View File

@ -4,8 +4,8 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
"This file is @generated automatically" "This file is @generated automatically"
], ],
"hash": "5268e0c573a4094ea670e2eb7555b962", "hash": "7e547dba71449ade427b93dc8b108e0f",
"content-hash": "cf263546eb8ba91f81f26bdc5470573e", "content-hash": "c05b529acf38d8dd1ab5452432e67887",
"packages": [ "packages": [
{ {
"name": "agmscode/omnipay-agms", "name": "agmscode/omnipay-agms",
@ -10716,7 +10716,6 @@
"prefer-lowest": false, "prefer-lowest": false,
"platform": { "platform": {
"php": ">=5.5.9", "php": ">=5.5.9",
"ext-mcrypt": "*",
"ext-gmp": "*", "ext-gmp": "*",
"ext-gd": "*" "ext-gd": "*"
}, },