Extract logic to determine which package manager

..is used

Always Composer for PHP.
npm, yarn or pnpm for node.
This commit is contained in:
Oliver Davies 2024-02-26 07:17:04 +00:00
parent b2ccc4027f
commit c6a6b4de5d
9 changed files with 202 additions and 24 deletions

View file

@ -1,5 +1,7 @@
<?php
namespace App\Tests;
use App\Action\DetermineProjectLanguage;
use App\Enum\ProjectLanguage;
use PHPUnit\Framework\TestCase;