From e0744749551ab60d832aff10d18ab36b01f58a28 Mon Sep 17 00:00:00 2001 From: Marco Date: Tue, 7 Jun 2016 18:42:29 +0200 Subject: [PATCH] Fix list of dependencies --- README.md | 4 ++-- composer.json | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7ee5c77..d3bc5a6 100644 --- a/README.md +++ b/README.md @@ -17,8 +17,8 @@ Completely framework-agnostic and database-agnostic. ## Requirements * PHP 5.5.0+ - * PDO - * OpenSSL + * OpenSSL extension + * MySQL 5.5.3+ **or** MariaDB 5.5.23 ## Installation diff --git a/composer.json b/composer.json index fd170bf..9101815 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,8 @@ "name": "delight-im/auth", "description": "Authentication for PHP. Simple, lightweight and secure.", "require": { - "php": ">=5.5.0" + "php": ">=5.5.0", + "ext-openssl": "*" }, "type": "library", "keywords": [ "auth", "authentication", "login", "security" ],