├── .gitignore ├── README.md ├── composer.json └── src ├── Chart.php ├── Excel.php ├── Format.php ├── RichString.php └── Validation.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Install 2 | 3 | ### Extension 4 | 5 | ```bash 6 | pecl install xlswriter 7 | ``` 8 | 9 | ### IDE Helper 10 | 11 | ```bash 12 | composer require viest/php-ext-xlswriter-ide-helper:dev-master 13 | ``` 14 | 15 | ## Document 16 | 17 | https://xlswriter-docs.viest.me -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "viest/php-ext-xlswriter-ide-helper", 3 | "description": "PHP Extension Xlswriter IDE Helper", 4 | "license": "MIT", 5 | "authors": [ 6 | { 7 | "name": "viest", 8 | "email": "wjx@php.net" 9 | } 10 | ], 11 | "autoload": { 12 | "psr-4": { 13 | "Vtiful\\Kernel\\": "src/" 14 | } 15 | }, 16 | "require": { 17 | "php": ">=7" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/Chart.php: -------------------------------------------------------------------------------- 1 |