From 8ac39d07d62417234c04ee5a152c50e51620068a Mon Sep 17 00:00:00 2001 From: lichunqiang Date: Sat, 10 Oct 2015 10:58:19 +0800 Subject: [PATCH] fix for autoload --- composer.json | 31 ++++++++++++++++++------------- 1 file changed, 18 insertions(+), 13 deletions(-) diff --git a/composer.json b/composer.json index d182192..3a05608 100644 --- a/composer.json +++ b/composer.json @@ -1,15 +1,20 @@ { - "name": "lxpgw/yii2-webuploader", - "description": "The yii2 intergation with webuploader", - "require": { - "yiisoft/yii2": "^2.0", - "bower-asset/fex-webuploader": "^0.1.5" - }, - "license": "MIT", - "authors": [ - { - "name": "lichunqiang", - "email": "light-li@hotmail.com" - } - ] + "name": "lxpgw/yii2-webuploader", + "description": "The yii2 intergation with webuploader", + "require": { + "yiisoft/yii2": "^2.0", + "bower-asset/fex-webuploader": "^0.1.5" + }, + "autoload": { + "psr-4": { + "lxpgw\\webuploader\\": "" + } + }, + "license": "MIT", + "authors": [ + { + "name": "lichunqiang", + "email": "light-li@hotmail.com" + } + ] }