PHP code example of bildvitta / iss-upload

1. Go to this page and download the library: Download bildvitta/iss-upload 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/ */

    

bildvitta / iss-upload example snippets


// config/filesystems.php
'minio' => [
    'driver'   => 's3',
    'key'      => env('MINIO_ACCESS_KEY_ID'),
    'secret'   => env('MINIO_SECRET_ACCESS_KEY'),
    'region'   => env('MINIO_DEFAULT_REGION', 'us-east-1'),
    'bucket'   => env('MINIO_BUCKET'),
    'endpoint' => env('MINIO_ENDPOINT'),
    'use_path_style_endpoint' => true,
],
bash
php artisan iss-upload:publish-config
bash
php artisan vendor:publish --provider="Bildvitta\IssUpload\IssUploadServiceProvider" --tag="iss-upload-config"