We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 90981e3 + af614cd commit e2ad31eCopy full SHA for e2ad31e
1 file changed
src/SPC/store/source/PhpSource.php
@@ -15,9 +15,7 @@ class PhpSource extends CustomSourceBase
15
public function fetch(bool $force = false, ?array $config = null, int $lock_as = SPC_DOWNLOAD_SOURCE): void
16
{
17
$major = defined('SPC_BUILD_PHP_VERSION') ? SPC_BUILD_PHP_VERSION : '8.4';
18
- if ($major === '8.5') {
19
- Downloader::downloadSource('php-src', ['type' => 'url', 'url' => 'https://downloads.php.net/~daniels/php-8.5.0RC5.tar.xz'], $force);
20
- } elseif ($major === 'git') {
+ if ($major === 'git') {
21
Downloader::downloadSource('php-src', ['type' => 'git', 'url' => 'https://github.com/php/php-src.git', 'rev' => 'master'], $force);
22
} else {
23
Downloader::downloadSource('php-src', $this->getLatestPHPInfo($major), $force);
0 commit comments