8000 Tags · fabricecw/Laravel-Excel · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: fabricecw/Laravel-Excel

Tags

3.1.14

Toggle 3.1.14's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Ensure that opis always has the same security provider (SpartnerNL#2257)

* Ensure that opis always has the same security provider (SpartnerNL#2251)

3.1.13

Toggle 3.1.13's commit message

Verified

This commit was signed with the committer’s verified signature.
patrickbrouwers Patrick Brouwers
Add missing ShouldQueue interface to AfterImportJob; fixes SpartnerNL…

…#2180

3.1.12

Toggle 3.1.12's commit message
Make download headers customizable (SpartnerNL#2162)

Before, CSV downloads would be sent with a mime type of 'text/plain'.
This made Firefox propose to open the file with a text editor instead of LibreOffice / Excel.

The workaround without this fix would be a bit longwinded:

```php
	$response = Excel::download(
            new MyExport($data), "{$filename}.csv",
            \Maatwebsite\Excel\Excel::CSV
        );

	// send the correct mime type
        $response->headers->set('Content-Type', 'text/csv');

        return $response;
```

With this fix:

```php
	return Excel::download(
	    new MyExport($data), "{$filename}.csv",
            \Maatwebsite\Excel\Excel::CSV,
	    ['Content-Type' => 'text/csv']
        );
```

Doesn't break the API. Doesn't change behavior.  Custom headers are optional.

3.1.11

Toggle 3.1.11's commit message
Apply fixes from StyleCI

[ci skip] [skip ci]

3.1.10

Toggle 3.1.10's commit message
Apply fixes from StyleCI

[ci skip] [skip ci]

3.1.9

Toggle 3.1.9's commit message
Apply fixes from StyleCI

[ci skip] [skip ci]

3.1.8

Toggle 3.1.8's commit message

Verified

This commit was signed with the committer’s verified signature.
patrickbrouwers Patrick Brouwers
Allow failed row values to be collected from the failure instance

3.1.7

Toggle 3.1.7's commit message

Verified

This commit was signed with the committer’s verified signature.
patrickbrouwers Patrick Brouwers
Dont run with phpunit 8 yet

3.1.6

Toggle 3.1.6's commit message

Verified

This commit was signed with the committer’s verified signature.
patrickbrouwers Patrick Brouwers
Disable php 7.3 travis

3.1.5

Toggle 3.1.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Serialized quey eager loads (SpartnerNL#2013)

* Add failing test for serializing query with eager loads

* Support queuing FromQuery with eager loads (SpartnerNL#1982)

* Apply fixes from StyleCI

[ci skip] [skip ci]

* Add test coverage for serializing non-eloquent queries

* Apply fixes from StyleCI

[ci skip] [skip ci]
0