From 7e9bda2dfeb455e38b4ccccd4694c99ffd3ecb25 Mon Sep 17 00:00:00 2001 From: Erik Figueiredo Date: Fri, 13 May 2016 17:50:03 -0300 Subject: [PATCH] =?UTF-8?q?corre=C3=A7=C3=A3o=20no=20autoload?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- composer.json | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 86837a1..f27c66b 100644 --- a/composer.json +++ b/composer.json @@ -1,16 +1,23 @@ { "name": "webdevbr/eloquent-zf2", "description": "Integration of Illuminate\\Database with Zend Framework 2", + "type": "zf-module", "license": "BSD-3-Clause", "keywords": [ "framework", "zf2", "eloquent", - "illuminate" + "illuminate", + "orm" ], "require": { - "php": ">=5.3.3", + "php": ">=5.5.9", "illuminate/database": "^5.2", "illuminate/events": "^5.2" + }, + "autoload": { + "classmap": [ + "./Module.php" + ] } }