1
0
mirror of https://github.com/php/web-php.git synced 2026-04-01 12:12:16 +02:00
Files
archived-web-php/include/version.inc
Derick Rethans d9e92c5a93 - Release 4.4.6.
2007-03-01 08:48:16 +00:00

127 lines
5.6 KiB
PHP

<?php // vim: et
/* The format is:
* array(
* "major release number" => array(
* "release" => array(
* "source/windows" => array(
* "filename" => "filename.tar.bz2",
* "name" => "package name",
* "md5" => "crc32, right?",
* "date" => "this files release date",
* "note" => "this file was updated 29feb due to broken phar files..",
* ),
* "announcement" => "bool, release announcement exists in releases/?"
* ),
* ),
* );
*/
/* PHP 5 Release */
$PHP_5_VERSION = "5.2.1";
$PHP_5_DATE = "08 Feb 2007";
$PHP_5_MD5 = array(
"tar.bz2" => "261218e3569a777dbd87c16a15f05c8d",
"tar.gz" => "604eaee2b834bb037d2c83e53e300d3f",
"zip" => "682dd66fb03c7dd24c522f474e1b04b6",
"installer" => "f0a1445f4adfdc2e00a81b2eb788be5c",
"pecl.zip" => "dc8b394146faf7effa6f26df02e8e534",
"nts.zip" => "815c8c61af58fffdc34d34c24310ffe2",
"pecl.nts" => "ffd78a31a704d68c8adadc9288261583",
);
/* PHP 4 Release */
$PHP_4_VERSION = "4.4.6";
$PHP_4_DATE = "01 Mar 2007";
$PHP_4_MD5 = array(
"tar.bz2" => "5db283824310c87efb18c76b4735c4bd",
"tar.gz" => "07c607fcf12435f0078d72fe0de4e3c0",
"zip" => "486764cefb5f7bde39e95c49b2e38635",
);
$RELEASES = array(
5 => array(
$PHP_5_VERSION => array(
"announcement" => true,
"source" => array(
array(
"filename" => "php-$PHP_5_VERSION.tar.bz2",
"name" => "PHP $PHP_5_VERSION (tar.bz2)",
"md5" => $PHP_5_MD5["tar.bz2"],
"date" => $PHP_5_DATE,
),
array(
"filename" => "php-$PHP_5_VERSION.tar.gz",
"name" => "PHP $PHP_5_VERSION (tar.gz)",
"md5" => $PHP_5_MD5["tar.gz"],
"date" => $PHP_5_DATE,
),
),
"windows" => array( /* Prefix the key with dot if the windows stuff isn't available yet*/
array(
"filename" => "php-$PHP_5_VERSION-Win32.zip",
"name" => "PHP $PHP_5_VERSION zip package",
"md5" => $PHP_5_MD5["zip"],
"date" => $PHP_5_DATE,
),
array(
"filename" => "php-$PHP_5_VERSION-win32-installer.msi",
"name" => "PHP $PHP_5_VERSION installer",
"md5" => $PHP_5_MD5["installer"],
"date" => "12 Feb 2007", # $PHP_5_DATE,
"note" => "This file was updated February 12th to fix problems when upgrading from previous PHP versions.",
),
array(
"filename" => "pecl-$PHP_5_VERSION-Win32.zip",
"name" => "PECL $PHP_5_VERSION Win32 binaries",
"md5" => $PHP_5_MD5["pecl.zip"],
"date" => $PHP_5_DATE,
),
array(
"filename" => "php-$PHP_5_VERSION-nts-Win32.zip",
"name" => "PHP $PHP_5_VERSION Non-thread-safe Win32 binaries",
"md5" => $PHP_5_MD5["nts.zip"],
"date" => $PHP_5_DATE,
),
array(
"filename" => "pecl-$PHP_5_VERSION-nts-Win32.zip",
"name" => "PECL $PHP_5_VERSION Non-thread-safe Win32 binaries",
"md5" => $PHP_5_MD5["pecl.nts"],
"date" => $PHP_5_DATE,
"note" => "(Most of these <a href='http://pecl.php.net/'>PECL</a> extension files come standard with the PHP 4 Windows binaries, but have since been moved into this separate PECL download. Files such as php_pdf.dll, php_ssh2.dll, etc.)",
),
),
),
//"5.2.2RC1" => array(), /* Yes, it should be empty - unless we want it in the version feed? */
),
4 => array(
$PHP_4_VERSION => array(
"announcement" => true,
"source" => array(
array(
"filename" => "php-$PHP_4_VERSION.tar.bz2",
"name" => "PHP $PHP_4_VERSION (tar.bz2)",
"md5" => $PHP_4_MD5["tar.bz2"],
"date" => $PHP_4_DATE,
),
array(
"filename" => "php-$PHP_4_VERSION.tar.gz",
"name" => "PHP $PHP_4_VERSION (tar.gz)",
"md5" => $PHP_4_MD5["tar.gz"],
"date" => $PHP_4_DATE,
),
),
"windows" => array( /* Prefix the key with dot if they don't exists yet */
array(
"filename" => "php-$PHP_4_VERSION-Win32.zip",
"name" => "PHP $PHP_4_VERSION zip package",
"md5" => $PHP_4_MD5["zip"],
"date" => $PHP_4_DATE,
"note" => "(CGI binary plus server API versions for Apache, Apache2 (experimental), ISAPI, NSAPI, Servlet and Pi3Web. MySQL support built-in, many extensions included, packaged as zip)<br />",
),
),
),
// "4.4.6RC1" => array(), /* Yes, it should be empty.. unless we want it in the version feed..? */
),
);