Skip to content

Commit

Permalink
Issue #18 Push min requirement to Yii 2.0.13
Browse files Browse the repository at this point in the history
  • Loading branch information
mikehaertl committed Jan 29, 2018
1 parent 79bb68c commit fdc172f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ Yii2 Excel Export
[![Latest Unstable Version](https://poser.pugx.org/codemix/yii2-excelexport/v/unstable)](https://packagist.org/packages/codemix/yii2-excelexport)
[![License](https://poser.pugx.org/codemix/yii2-excelexport/license)](https://packagist.org/packages/codemix/yii2-excelexport)

> **Note:** The minimum requirement since 2.6.0 is Yii 2.0.13. The latest
> version for older Yii releases is 2.5.0.
## Features

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
}
],
"require": {
"yiisoft/yii2": "*",
"yiisoft/yii2": "~2.0.13",
"mikehaertl/php-tmpfile": "^1.0.0",
"phpoffice/phpexcel": "1.*"
},
Expand Down
4 changes: 2 additions & 2 deletions src/ExcelFile.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
namespace codemix\excelexport;

use Yii;
use yii\base\Object;
use yii\base\BaseObject;
use yii\helpers\ArrayHelper;
use mikehaertl\tmp\File;

/**
* This class represents an excel file.
*/
class ExcelFile extends Object
class ExcelFile extends BaseObject
{
/**
* @var string the writer class to use. Default is
Expand Down

0 comments on commit fdc172f

Please sign in to comment.