Changeset d62c312 in github


Ignore:
Timestamp:
Dec 31, 2009 3:32:31 AM (3 years ago)
Author:
alecpl <alec@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
6c14037
Parents:
a2cb306
Message:
  • required JSON check added, changed links to PHP modules
File:
1 edited

Legend:

Unmodified
Added
Removed
  • installer/check.php

    r3e2bc6a rd62c312  
    33 
    44$required_php_exts = array('PCRE' => 'pcre', 'DOM' => 'dom', 
    5     'Session' => 'session', 'XML' => 'xml'); 
     5    'Session' => 'session', 'XML' => 'xml', 'JSON' => 'json'); 
    66 
    77$optional_php_exts = array('FileInfo' => 'fileinfo', 'Libiconv' => 'iconv', 
     
    2323 
    2424$source_urls = array( 
    25     'Sockets' => 'http://www.php.net/manual/en/ref.sockets.php', 
    26     'Session' => 'http://www.php.net/manual/en/ref.session.php', 
    27     'PCRE' => 'http://www.php.net/manual/en/ref.pcre.php', 
    28     'FileInfo' => 'http://www.php.net/manual/en/ref.fileinfo.php', 
    29     'Libiconv' => 'http://www.php.net/manual/en/ref.iconv.php', 
    30     'Multibyte' => 'http://www.php.net/manual/en/ref.mbstring.php', 
    31     'Mcrypt' => 'http://www.php.net/manual/en/ref.mcrypt.php', 
    32     'OpenSSL' => 'http://www.php.net/manual/en/ref.openssl.php', 
    33     'GD' => 'http://www.php.net/manual/en/ref.image.php', 
     25    'Sockets' => 'http://www.php.net/manual/en/book.sockets.php', 
     26    'Session' => 'http://www.php.net/manual/en/book.session.php', 
     27    'PCRE' => 'http://www.php.net/manual/en/book.pcre.php', 
     28    'FileInfo' => 'http://www.php.net/manual/en/book.fileinfo.php', 
     29    'Libiconv' => 'http://www.php.net/manual/en/book.iconv.php', 
     30    'Multibyte' => 'http://www.php.net/manual/en/book.mbstring.php', 
     31    'Mcrypt' => 'http://www.php.net/manual/en/book.mcrypt.php', 
     32    'OpenSSL' => 'http://www.php.net/manual/en/book.openssl.php', 
     33    'GD' => 'http://www.php.net/manual/en/book.image.php', 
     34    'JSON' => 'http://www.php.net/manual/en/book.json.php', 
     35    'DOM' => 'http://www.php.net/manual/en/book.dom.php', 
    3436    'PEAR' => 'http://pear.php.net', 
    3537    'MDB2' => 'http://pear.php.net/package/MDB2', 
    3638    'Net_SMTP' => 'http://pear.php.net/package/Net_SMTP', 
    3739    'Mail_mime' => 'http://pear.php.net/package/Mail_mime', 
    38     'DOM' => 'http://www.php.net/manual/en/intro.dom.php' 
    3940); 
    4041 
Note: See TracChangeset for help on using the changeset viewer.