40 lines
869 B
JSON
40 lines
869 B
JSON
{
|
|
"name": "crabbly/fpdf-laravel",
|
|
"description": "Laravel package for FPDF.",
|
|
"license": "MIT",
|
|
"keywords": ["laravel", "fpdf"],
|
|
"authors": [
|
|
{
|
|
"name": "Rodrigo Vieira",
|
|
"email": "rodrigo@crabbly.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"illuminate/support": ">=5.8.0",
|
|
"illuminate/database": ">=5.8.0"
|
|
},
|
|
"require-dev": {
|
|
"fzaninotto/faker": "^1.4",
|
|
"mockery/mockery": "^1.0",
|
|
"phpunit/phpunit": "^8.5"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Crabbly\\Fpdf\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/"
|
|
}
|
|
},
|
|
"minimum-stability": "dev",
|
|
"extra": {
|
|
"laravel": {
|
|
"providers": [
|
|
"Crabbly\\Fpdf\\FpdfServiceProvider"
|
|
]
|
|
}
|
|
}
|
|
}
|