Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: sockets, json, curl
extensions: sockets, json, curl, zip

- name: Install dependencies with composer
run: composer install
Expand Down
1 change: 1 addition & 0 deletions .mddoc.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ A Streamed Data Export Tool
Supported formats:
- CSV / TSV
- SpreadsheetML "Excel 2004 XML Spreadsheet"
- XLSX "Office Open XML Spreadsheet"
- More to come.

]]></text>
Expand Down
22 changes: 21 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ A Streamed Data Export Tool
Supported formats:
- CSV / TSV
- SpreadsheetML "Excel 2004 XML Spreadsheet"
- XLSX "Office Open XML Spreadsheet"
- More to come.


Expand Down Expand Up @@ -375,10 +376,29 @@ function setCreatedTime(?int $createdTime) : void

- ***int*** | ***null*** `$createdTime` - The timestamp to use for the created time. If null, the current time will be used.

### Class: \Quorum\Exporter\Engines\XlsxEngine

Writes a minimal Office Open XML spreadsheet (XLSX) archive.

This intentionally mirrors SpreadsheetMLEngine: values are either numbers or
strings, empty values leave gaps in their rows, and multiline strings wrap.

---

#### Method: XlsxEngine->setCreatedTime

```php
function setCreatedTime(?int $createdTime) : void
```

##### Parameters:

- ***int*** | ***null*** `$createdTime` - The timestamp to use for the created time. If null, the current time will be used.

### Class: \Quorum\Exporter\Exceptions\ExportException

### Class: \Quorum\Exporter\Exceptions\InvalidDataTypeException

### Class: \Quorum\Exporter\Exceptions\OutputException

### Class: \Quorum\Exporter\Exceptions\WritableException
### Class: \Quorum\Exporter\Exceptions\WritableException
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"php": ">=7.4"
},
"require-dev": {
"ext-zip": "*",
"donatj/drop": "*",
"phpunit/phpunit": "4.* | ~8.5 | ^9.0",
"friendsofphp/php-cs-fixer": "^3.16",
Expand Down
Loading