This commit introduces Row and Cell entities, that will replace the arrays passed in previously. It also adds support for Cell styling (instead of Row styling only).
12 lines
455 B
PHP
12 lines
455 B
PHP
<?php
|
|
|
|
require_once dirname(__DIR__) . '/vendor/autoload.php';
|
|
|
|
require_once dirname(__DIR__) . '/tests/Spout/TestUsingResource.php';
|
|
require_once dirname(__DIR__) . '/tests/Spout/ReflectionHelper.php';
|
|
require_once dirname(__DIR__) . '/tests/Spout/Reader/CSV/SpoutTestStream.php';
|
|
require_once dirname(__DIR__) . '/tests/Spout/Writer/RowCreationHelper.php';
|
|
|
|
// Make sure a timezone is set to be able to work with dates
|
|
date_default_timezone_set('UTC');
|