You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Konrad Abicht edited this page May 5, 2021
·
5 revisions
Composer
Add PDFParser to your composer.json file :
{
"require": {
"smalot/pdfparser": "*"
}
}
Now ask for composer to download the bundle by running the command:
$ composer update smalot/pdfparser
Without Composer
In case you can't use Composer, you can include alt_autoload.php-dist into your project. It will load all required files at once. Afterwards you can use PDFParser class and others.
<?phprequire__DIR__.'/../alt_autoload.php-dist';
// Your code// ...?>