Yii v2 snippet guide II

Comparing #10 with #11

Revision #11 was created by rackycz rackycz on Sep 8, 2020, 2:52:14 PM.

Composer and PhpExcel

Content

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

 
// .
.. adds cca 40MB and 1400 files
 
// .
.. only for devel system

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