1
0
Fork 0

add php-zts virtual platform package

pull/5740/head
David Zuelke 2016-09-30 23:09:48 +02:00
parent 0f68c01094
commit a26c03eef0
1 changed files with 6 additions and 0 deletions

View File

@ -87,6 +87,12 @@ class PlatformRepository extends ArrayRepository
$this->addPackage($phpdebug); $this->addPackage($phpdebug);
} }
if (PHP_ZTS) {
$phpzts = new CompletePackage('php-zts', $version, $prettyVersion);
$phpzts->setDescription('The PHP interpreter, with Zend Thread Safety');
$this->addPackage($phpzts);
}
if (PHP_INT_SIZE === 8) { if (PHP_INT_SIZE === 8) {
$php64 = new CompletePackage('php-64bit', $version, $prettyVersion); $php64 = new CompletePackage('php-64bit', $version, $prettyVersion);
$php64->setDescription('The PHP interpreter, 64bit'); $php64->setDescription('The PHP interpreter, 64bit');