fast-excel

🦉 Fast Excel import/export for Laravel

MIT License

Downloads
12.7M
Stars
2.1K
Committers
32
fast-excel -

Published by rap2hpoutre over 4 years ago

fast-excel -

Published by rap2hpoutre over 4 years ago

fast-excel -

Published by rap2hpoutre over 4 years ago

fast-excel -

Published by rap2hpoutre almost 5 years ago

fast-excel -

Published by rap2hpoutre almost 5 years ago

fast-excel -

Published by rap2hpoutre almost 5 years ago

fast-excel -

Published by rap2hpoutre almost 5 years ago

fast-excel -

Published by rap2hpoutre almost 5 years ago

fast-excel -

Published by rap2hpoutre about 5 years ago

fast-excel - v1.3.0 - generators

Published by rap2hpoutre about 5 years ago

Introducing generators

Export rows one by one on large dataset to avoid memory_limit problem, thanks to generators (using yield and yield from).

function usersGenerator() {
    yield from User::chunk(200, function($users) {
        foreach($users as $user) {
            yield $user;
        }
    });
}

// Export consumes only a few MB, even with 10M+ rows.
(new FastExcel(usersGenerator()))->export('test.xlsx');
fast-excel -

Published by rap2hpoutre over 5 years ago

fast-excel -

Published by rap2hpoutre over 5 years ago

fast-excel -

Published by rap2hpoutre over 5 years ago

fast-excel -

Published by rap2hpoutre almost 6 years ago

fast-excel -

Published by rap2hpoutre almost 6 years ago

fast-excel -

Published by rap2hpoutre almost 6 years ago

fast-excel -

Published by rap2hpoutre almost 6 years ago

fast-excel -

Published by rap2hpoutre about 6 years ago

fast-excel - Façades, helper and more

Published by rap2hpoutre about 6 years ago

fast-excel -

Published by rap2hpoutre about 6 years ago

Package Rankings
Top 0.46% on Packagist.org
Top 6.66% on Proxy.golang.org
Badges
Extracted from project README
Version License StyleCI Tests Total Downloads