Skip to content
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
/.idea/
.phpunit.result.cache
.env
.DS_Store
.DS_Store
156 changes: 106 additions & 50 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions src/Detection/Framework.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,14 @@ abstract public function getName(): string;
*/
abstract public function getFiles(): array;

/**
* @return array<string> List of package names for detection.
*/
public function getPackages(): array
{
return [];
}

abstract public function getInstallCommand(): string;

abstract public function getBuildCommand(): string;
Expand Down
Loading