PHP code example of elegantly / laravel-pappers

1. Go to this page and download the library: Download elegantly/laravel-pappers library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

elegantly / laravel-pappers example snippets


return [

    'france' => [
        'token' => env('PAPPERS_FRANCE_TOKEN', env('PAPPERS_TOKEN')),
        'version' => env('PAPPERS_FRANCE_VERSION'),
    ],

    'international' => [
        'token' => env('PAPPERS_INTERNATIONAL_TOKEN', env('PAPPERS_TOKEN')),
        'version' => env('PAPPERS_INTERNATIONAL_VERSION'),
    ],

    'cache' => [
        'enabled' => true,
        'driver' => env('PAPPERS_CACHE_DRIVER', env('CACHE_DRIVER', 'file')),
        'expiry_seconds' => 604_800, // 1 week
    ],

    'rate_limit' => [
        'enabled' => false,
        'driver' => env('PAPPERS_RATE_LIMIT_DRIVER', env('CACHE_DRIVER', 'file')),
        'every_minute' => 30,
    ],
];

use Elegantly\Pappers\Facades\Pappers;
use Elegantly\Pappers\Integrations\France\Requests\EntrepriseRequest;

$entreprise = Pappers::france()->send(new EntrepriseRequest(
    siren: "897962361"
));

use Elegantly\Pappers\Facades\Pappers;
use Elegantly\Pappers\Integrations\International\Requests\CompanyRequest;

$entreprise = Pappers::international()->send(new CompanyRequest(
    country_code: "FR",
    company_number: "897962361"
));
bash
php artisan vendor:publish --tag="pappers-config"