Download the PHP package rf1705/fpdf without Composer
On this page you can find all versions of the php package rf1705/fpdf. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package fpdf
If you're going to use this package with L4, make sure you include the laravel 4 version:
laravel-Fpdf
Fpdf lets you generate PDF files. This package is the laravel package version of http://www.fpdf.org , for more information check this link http://www.fpdf.org/?lang=en
Donation :
Installation
Add the following to your composer.json
file:
Next, run composer install
to download it.
Add the service provider to app/config/app.php
, within the providers
array.
Finally, add the alias to app/config/app.php
, within the aliases
array.
Example Code
OR
Route::get('pdf', function(){
Fpdf::AddPage();
Fpdf::SetFont('Arial','B',16);
Fpdf::Cell(40,10,'Hello World!');
Fpdf::Output();
exit;
});
All versions of fpdf with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.3.0
illuminate/support Version ^5.0 || ^6.0 || ^7.0|| ^8.0 || ^9.0 || ^10.0
illuminate/support Version ^5.0 || ^6.0 || ^7.0|| ^8.0 || ^9.0 || ^10.0
The package rf1705/fpdf contains the following files
Loading the files please wait ....