An open API service indexing awesome lists of open source software.

https://github.com/roundpartner/backup-service

Service for generating back ups
https://github.com/roundpartner/backup-service

Last synced: 28 days ago
JSON representation

Service for generating back ups

Awesome Lists containing this project

README

          

# Backup Service
Service for generating back ups

## Usage

### Excel
Get Excel Workbook as a string
```php
$result = ExcelFactory::asString($input);
```
This can then be outputted as a file
```php
header('Content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
header('Content-Disposition: inline; filename="workbook.xlsx"');
```

## Clean Code

```bash
./vendor/bin/phpcbf --standard=psr2 ./src
./vendor/bin/phpcs --standard=psr2 ./src
```