PHP code example of finller / laravel-insee-siren

1. Go to this page and download the library: Download finller/laravel-insee-siren 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/ */

    

finller / laravel-insee-siren example snippets


use Finller\InseeSiren\Integrations\Insee\InseeApiConnector;

return [
    'key' => env('INSEE_KEY'),
    'secret' => env('INSEE_SECRET'),
    'version' => env('INSEE_SIREN_VERSION'),

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

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

    'client' => InseeApiConnector::class,
];

$data = InseeSiren::get("897962361");

$data->get('uniteLegale')
bash
php artisan vendor:publish --tag="insee-siren-config"