public function getPhpIncludeDirs()
{
$version = self::getCurrentVersion();
if (!Utils::isWindows()) {
$this->fileSystem->system('php-config --includes', 'stdout', $version . '/php-includes');
}
return trim($this->fileSystem->read($version . '/php-includes'));
}