Download the PHP package aaugustyniak/phpexcelhandler without Composer
On this page you can find all versions of the php package aaugustyniak/phpexcelhandler. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download aaugustyniak/phpexcelhandler
More information about aaugustyniak/phpexcelhandler
Files in aaugustyniak/phpexcelhandler
Download aaugustyniak/phpexcelhandler
More information about aaugustyniak/phpexcelhandler
Files in aaugustyniak/phpexcelhandler
Vendor aaugustyniak
Package phpexcelhandler
Short Description Handy php-excel wrapper classes
License MIT
Homepage https://github.com/artur-augustyniak/PhpExcelHandler
Package phpexcelhandler
Short Description Handy php-excel wrapper classes
License MIT
Homepage https://github.com/artur-augustyniak/PhpExcelHandler
Please rate this library. Is it a good library?
Informations about the package phpexcelhandler
API for simplified PhpExcel navigation and generating reports.
PhpExcelHandler
Right now this stuff works only under *nix systems.
If you want i.e. fill excel template with data and send it to output or save locally it is for you. Navigator classes take PhpExcel cell selection into cartesian like coordinates.
Installation
If you don’t have Composer yet, you should get it now.
-
Add the package to your
composer.json
:"require": { ... "aaugustyniak/phpexcelhandler": "1.0.0", ... }
-
Install:
$ php composer.phar install
- And use:
require_once "vendor/autoload.php";
$data = array(
array("Column1", "Column2", "Column3"),
array(1001, 2001, 3001),
array(4001, 5001, 6001),
array(7001, 8001, 9001),
);
$phpExcelFactory = new DefaultPhpExcelFactory();
$spreadSheet = new SpreadSheet($phpExcelFactory);
$anchorGuesser = new WriteAnchorGuesser($data);
$writer = new WriteTabularCommand($anchorGuesser);
$spreadSheet->modify($writer);
$outputHtml = $spreadSheet->getHtmlStream();
echo $outputHtml;
All versions of phpexcelhandler with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.3.3 <=5.6.29
symfony/http-foundation Version >=v2.1.10
irongit/symfony2-stream-response Version v1.0
phpoffice/phpexcel Version >=1.7.9
tecnickcom/tcpdf Version >=6.0.013
symfony/http-foundation Version >=v2.1.10
irongit/symfony2-stream-response Version v1.0
phpoffice/phpexcel Version >=1.7.9
tecnickcom/tcpdf Version >=6.0.013
The package aaugustyniak/phpexcelhandler contains the following files
Loading the files please wait ....