Your requirements could not be resolved to an installable set of packages.Your requirements could not be resolved to an installable set of packages. Problem 1 - laravel/horizon v4.2.1 requires ext-pcntl * -> the requested PHP extension pcntl is missing from your system. - laravel/horizon v4.2.0 requires ext-pcntl * -> the requested PHP extension pcntl is missing from your system. - laravel/horizon 4.x-dev requires ext-pcntl * -> the requested PHP extension pcntl is missing from your system. - Installation request for laravel/horizon ^4.2 -> satisfiable by laravel/horizon[4.x-dev, v4.2.0, v4.2.1]. Laravel Horizon을 win
주로 PHPStorm 같은 IDE 나 VSCode 같은 Extension이 잘 되어 있는 에디터를 사용하고, 그 이전에는 Source Tree / Git Kraken / Fork 등 Git Client 를 사용하여 Git을 사용하기 때문에, 아직 CLI로 Git을 유연하게 다루지 못해 git-scm 문서의 내용을 정리 합니다. 명령
문제 상황git pull origin master 또는 git checkout master 와 같이 브랜치를 변경하거나, 원격저장소에서 pull을 받을때 아래와 같은 오류가 나온적 경험이 한번쯤은 있을것 입니다. error: Your local changes to the following files would be overwritten by checkout: themes/icarus/layout/widget/recent_posts.ejs Please commit your changes or stash them before you switch branches. Aborting error: Your local changes to the
발단Laravel Framework로 TDD를 진행중에 Unit Test를 하기 위해 artisan 콘솔을 이용하여 TaskTest 라는 이름의 테스트 클래스를 생성하였습니다. $ php artisan make:test TaskTest --unit 코드는 간단했습니다. <?php namespace Tests\Unit; use App\Project; use Illuminate\Foundation\Testing\RefreshDatabase; use PHPUnit\Framework\TestCase; class TaskTest extends TestCase { use RefreshDatabase; /** *