PHPackages                             xsuchy09/nette-csv-response - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. xsuchy09/nette-csv-response

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

xsuchy09/nette-csv-response
===========================

Nette CSV Response

0.4(5y ago)422.2k↓34.6%3MITPHPPHP &gt;= 7.1

Since Jul 10Pushed 5y ago3 watchersCompare

[ Source](https://github.com/xsuchy09/nette-csv-response)[ Packagist](https://packagist.org/packages/xsuchy09/nette-csv-response)[ Docs](https://github.com/xsuchy09/nette-csv-response)[ RSS](/packages/xsuchy09-nette-csv-response/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (3)Versions (5)Used By (0)

CSV Response
============

[](#csv-response)

Install:

```
composer require xsuchy09/nette-csv-response
```

Use:

```
class SomePresenter extends BasePresenter
{
	public function actionDefault()
	{
		$data = [
			[ 'name' => 'George', 'age' => 15, 'grade' => 2, ],
			[ 'name' => 'Jack', 'age' => 17, 'grade' => 4, ],
			[ 'name' => 'Mary', 'age' => 17, 'grade' => 1, ],
		];

		$response = new \XSuchy09\Application\Responses\CsvResponse($data, 'students.csv');
		$this->sendResponse( $response );
	}
}
```

Individual settings example:

```
use \XSuchy09\Application\Responses\CsvResponse;

// $response is instance of \XSuchy09\Application\Responses\CsvResponse
$response
	->setDelimiter(CsvResponse::SEMICOLON)
	->setEnclosure('"') // this is default value so not require to call when set to "
	->setEscapeChar('\\') // this is default value so not require to call when set to \
	->setOutputCharset('utf-8') // this is default value so not require to call when set to utf-8
	->setContentType('application/csv')
	->setHeadingFormatter('mb_strtoupper')
	->setDataFormatter('trim')
;
```

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity32

Limited adoption so far

Community15

Small or concentrated contributor base

Maturity50

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 74.1% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~290 days

Total

4

Last Release

1999d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/bfb9263df3f7fbc25d3d7645fc4a68878972f9e6e0056e12820a491c1f2b4a64?d=identicon)[xsuchy09](/maintainers/xsuchy09)

---

Top Contributors

[![xsuchy09](https://avatars.githubusercontent.com/u/1107359?v=4)](https://github.com/xsuchy09 "xsuchy09 (20 commits)")[![ondrahlavac](https://avatars.githubusercontent.com/u/510361?v=4)](https://github.com/ondrahlavac "ondrahlavac (3 commits)")[![jkavalik](https://avatars.githubusercontent.com/u/5812825?v=4)](https://github.com/jkavalik "jkavalik (2 commits)")[![VladaHejda](https://avatars.githubusercontent.com/u/1905964?v=4)](https://github.com/VladaHejda "VladaHejda (2 commits)")

### Embed Badge

![Health badge](/badges/xsuchy09-nette-csv-response/health.svg)

```
[![Health](https://phpackages.com/badges/xsuchy09-nette-csv-response/health.svg)](https://phpackages.com/packages/xsuchy09-nette-csv-response)
```

###  Alternatives

[nette/php-generator

🐘 Nette PHP Generator: generates neat PHP code for you. Supports new PHP 8.5 features.

2.3k64.2M576](/packages/nette-php-generator)[contributte/menu-control

Menu control for Nette framework

29108.6k1](/packages/contributte-menu-control)[carrooi/nette-menu

Menu control for Nette framework

2950.0k1](/packages/carrooi-nette-menu)[uestla/twigrid

Experimental DataGrid for Nette Framework

1712.3k2](/packages/uestla-twigrid)[ipub/gravatar

Gravatar creator for Nette Framework

122.0k1](/packages/ipub-gravatar)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
