PHPackages                             kaankilic/fpdfinvoice - 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. kaankilic/fpdfinvoice

ActiveLibrary

kaankilic/fpdfinvoice
=====================

Fpdf allows to generate PDF files

1.0.2(11y ago)0151BSD-2-ClausePHPPHP &gt;=5.3.0

Since Mar 30Pushed 10y ago1 watchersCompare

[ Source](https://github.com/kaankilic/laravel-fpdfinvoice)[ Packagist](https://packagist.org/packages/kaankilic/fpdfinvoice)[ RSS](/packages/kaankilic-fpdfinvoice/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependencies (1)Versions (4)Used By (0)

If you're going to use this package with L4 , make sure to include the laravel 4 version:

```
"require": {
    "anouar/fpdf": "1.0.1"
}
```

\##laravel-Fpdf

Fpdf allows to generate PDF files . This package is the laravel package version of  , for more information check this link

\##Donation : If you want to support us: [![Click here to lend your support to: github and make a donation at pledgie.com !](https://camo.githubusercontent.com/5899c75badea3a703b9e0ba0b9350c62fd4544f83481466dfdb5254857ba8380/68747470733a2f2f706c65646769652e636f6d2f63616d706169676e732f32373734382e706e673f736b696e5f6e616d653d6368726f6d65)](https://pledgie.com/campaigns/27748)

\###Installation To your `composer.json` file, add:

```
"require-dev": {
	"anouar/fpdf": "1.0.2"
}
```

Next, run `composer install` to download it.

Add the service provider to `app/config/app.php`, within the `providers` array.

```
'providers' => array(
	// ...

	'Anouar\Fpdf\FpdfServiceProvider',
)
```

Finally, add the alias to `app/config/app.php`, within the `aliases` array.

```
'aliases' => array(
	// ...

	'Fpdf'	  => 'Anouar\Fpdf\Facades\Fpdf',
)
```

\##Example Code

```
Route::get('pdf', function(){
	$fpdf = new Fpdf();
        $fpdf->AddPage();
        $fpdf->SetFont('Arial','B',16);
        $fpdf->Cell(40,10,'Hello World!');
        $fpdf->Output();
        exit;

});
```

\##OR

```
Route::get('pdf', function(){

        Fpdf::AddPage();
        Fpdf::SetFont('Arial','B',16);
        Fpdf::Cell(40,10,'Hello World!');
        Fpdf::Output();
        exit;

});

```

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community15

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

Top contributor holds 65.8% 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 ~0 days

Total

3

Last Release

4059d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/46afbba6b880ec59a944b5184e8e3d01bdf0094decfee0f9d99e74607eb348ca?d=identicon)[kaankilic](/maintainers/kaankilic)

---

Top Contributors

[![anouarabdsslm](https://avatars.githubusercontent.com/u/2453950?v=4)](https://github.com/anouarabdsslm "anouarabdsslm (25 commits)")[![kaankilic](https://avatars.githubusercontent.com/u/5264153?v=4)](https://github.com/kaankilic "kaankilic (6 commits)")[![jonasemde](https://avatars.githubusercontent.com/u/5083193?v=4)](https://github.com/jonasemde "jonasemde (3 commits)")[![Ryuske](https://avatars.githubusercontent.com/u/609591?v=4)](https://github.com/Ryuske "Ryuske (1 commits)")[![jeroennoten](https://avatars.githubusercontent.com/u/4370753?v=4)](https://github.com/jeroennoten "jeroennoten (1 commits)")[![asarmiento](https://avatars.githubusercontent.com/u/10239510?v=4)](https://github.com/asarmiento "asarmiento (1 commits)")[![BenjaminRehn](https://avatars.githubusercontent.com/u/2428038?v=4)](https://github.com/BenjaminRehn "BenjaminRehn (1 commits)")

### Embed Badge

![Health badge](/badges/kaankilic-fpdfinvoice/health.svg)

```
[![Health](https://phpackages.com/badges/kaankilic-fpdfinvoice/health.svg)](https://phpackages.com/packages/kaankilic-fpdfinvoice)
```

###  Alternatives

[fumeapp/modeltyper

Generate TypeScript interfaces from Laravel Models

196277.9k](/packages/fumeapp-modeltyper)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

255.2k](/packages/aedart-athenaeum)

PHPackages © 2026

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