Skip to content

Commit

Permalink
Use paragonie/random-lib fork to avoid depreciated mcrypt_module_open…
Browse files Browse the repository at this point in the history
… in php 7.1 and higher.

Related ircmaxell/RandomLib#61
  • Loading branch information
thanos committed Jun 10, 2019
1 parent 4b910ba commit d24a31b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions sql/pfak_ergo.sql
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
-- MySQL Script generated by MySQL Workbench
-- Sat 08 Jun 2019 11:45:18 PM CEST
-- Mon 10 Jun 2019 05:00:28 PM CEST
-- Model: New Model Version: 1.0
-- MySQL Workbench Forward Engineering

SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0;
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;
SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='TRADITIONAL,ALLOW_INVALID_DATES';
SET GLOBAL time_zone = '+2:00';

-- -----------------------------------------------------
-- Schema pfak_ergo
Expand Down Expand Up @@ -474,6 +473,8 @@ START TRANSACTION;
USE `pfak_ergo`;
INSERT INTO `pfak_ergo`.`officesUsers` (`officesUsers_users_id`, `officesUsers_offices_id`) VALUES (1, 1);
INSERT INTO `pfak_ergo`.`officesUsers` (`officesUsers_users_id`, `officesUsers_offices_id`) VALUES (1, 2);
INSERT INTO `pfak_ergo`.`officesUsers` (`officesUsers_users_id`, `officesUsers_offices_id`) VALUES (2, 3);
INSERT INTO `pfak_ergo`.`officesUsers` (`officesUsers_users_id`, `officesUsers_offices_id`) VALUES (2, 5);

COMMIT;

4 changes: 2 additions & 2 deletions src/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@
"tigerwill90/server-timing": "0.x-dev",
"tuupola/slim-jwt-auth": "^3.3",
"firebase/php-jwt": "^5.0",
"ircmaxell/random-lib": "^1.2",
"respect/validation": "^1.1",
"phpmailer/phpmailer": "^6.0",
"google/recaptcha": "^1.2",
"dflydev/fig-cookies": "^2.0"
"dflydev/fig-cookies": "^2.0",
"paragonie/random-lib": "^2.0"
},
"require-dev" : {
"roave/security-advisories": "dev-master",
Expand Down

0 comments on commit d24a31b

Please sign in to comment.