PHP code example of jlorente / laravel-stethome

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

    

jlorente / laravel-stethome example snippets


return [
    //other stuff
    'providers' => [
        //other stuff
        \Jlorente\Laravel\StethoMe\StethoMeServiceProvider::class,
    ];
];

return [
    //other stuff
    'aliases' => [
        //other stuff
        'StethoMe' => \Jlorente\Laravel\StethoMe\Facades\StethoMe::class,
    ];
];

return [
    'vendor_token' => 'YOUR_VENDOR_TOKEN',
    //other configuration
];

StethoMe::pulmonary()->getVisitId();
bash
$ php composer.phar