Yii v2 snippet guide II

Comparing #7 with #8

Revision #8 was created by rackycz rackycz on Sep 8, 2020, 10:05:51 AM.

Composer and PhpExcel

Content

[...]
Note: [PhpExcel](https://github.com/PHPOffice/PHPExcel) is deprecated and was replaced with [PhpSpreadsheet](https://github.com/PHPOffice/PhpSpreadsheet).

```
// 1) Command line:
// This downloads everything to folder "vendor"
composer require phpoffice/phpspreadsheet --prefer-source
 
// --prefer-source ... also documentation and samples are downloaded


// 2) PHP:
// Now you can directly use the package without any configuration:
use PhpOffice\PhpSpreadsheet\Spreadsheet;
use PhpOffice\PhpSpreadsheet\Writer\Xlsx;
[...]