skip to Main Content

Github Action fails on Laravel project

That's my .yaml file name: Laravel on: push: branches: [ "main" ] pull_request: branches: [ "main" ] jobs: laravel-tests: runs-on: ubuntu-latest steps: - uses: shivammathur/setup-php@15c43e89cdef867065b0213be354c2841860869e with: php-version: '8.1' - uses: actions/checkout@v3 - name: Copy .env run: php -r "file_exists('.env') ||…

VIEW QUESTION

Redis – Class 'AppProvidersFortifyServiceProvider' not found in Laravel 8.8

This is the error message that shows up in my browser: Class 'AppProvidersFortifyServiceProvider'not found in C:xampphtdocsblogvendorlaravelframeworksrcIlluminateFoundationProviderRepository.php (line 209) public function createProvider($provider) //line 207 { //line 208 return new $provider($this->app); //line 209 } //line 210 Code in ProviderRepository.php: <?php namespace IlluminateFoundation;…

VIEW QUESTION
Back To Top
Search