Updated against 5.5.9 and added more extensions

This commit is contained in:
Joshua Sherman 2014-02-10 13:43:26 -05:00
parent d30ecd69f8
commit f3748eb7ec
3 changed files with 25 additions and 14 deletions

View file

@ -9,7 +9,7 @@ syntax file distributed with Vim.
The point of this fork is to embrace the latest and greatest PHP has to offer The point of this fork is to embrace the latest and greatest PHP has to offer
and constantly update against the latest PHP release. and constantly update against the latest PHP release.
Last updated against **5.5.8** Last updated against **5.5.9**
[StanAngeloff]: https://github.com/StanAngeloff/php.vim [StanAngeloff]: https://github.com/StanAngeloff/php.vim
[garvin]: https://github.com/vim-scripts/php.vim--Garvin [garvin]: https://github.com/vim-scripts/php.vim--Garvin

Binary file not shown.

View file

@ -31,29 +31,35 @@
* shared) for these constants to show up. * shared) for these constants to show up.
*/ */
$allowed_extensions = [ $allowed_extensions = [
'amqp',
'apcu',
'bcmath', 'bcmath',
'bz2', 'bz2',
'calendar', 'calendar',
// 'com_dotnet', #'com_dotnet',
'core', 'core',
'couchbase',
'ctype', 'ctype',
'curl', 'curl',
'date', 'date',
'dba', 'dba',
'dom', 'dom',
// 'enchant', #'enchant',
'ereg', 'ereg',
'exif', 'exif',
'fileinfo', 'fileinfo',
'filter', 'filter',
'ftp', 'ftp',
'gd', 'gd',
'geoip',
'gettext', 'gettext',
// 'gmp', 'gmagick',
#'gmp',
'hash', 'hash',
'iconv', 'iconv',
// 'imap', 'imagick',
// 'interbase', #'imap',
#'interbase',
'intl', 'intl',
'json', 'json',
'ldap', 'ldap',
@ -63,11 +69,13 @@ $allowed_extensions = [
'memcache', 'memcache',
'memcached', 'memcached',
'mhash', 'mhash',
// 'mssql', 'mongo',
#'mssql',
'mysql', 'mysql',
'mysqli', 'mysqli',
// 'oci8', 'oauth',
// 'oci8_11g', #'oci8',
#'oci8_11g',
'odbc', 'odbc',
'openssl', 'openssl',
'pcre', 'pcre',
@ -78,7 +86,7 @@ $allowed_extensions = [
'posix', 'posix',
'pspell', 'pspell',
'readline', 'readline',
// 'recode', #'recode',
'redis', 'redis',
'reflection', 'reflection',
'session', 'session',
@ -88,16 +96,18 @@ $allowed_extensions = [
'soap', 'soap',
'sockets', 'sockets',
'spl', 'spl',
// 'sqlite', #'sqlite',
'sqlite3', 'sqlite3',
'standard', 'standard',
// 'sybase_ct', #'sybase_ct',
'sysvmsg', 'sysvmsg',
'sysvsem', 'sysvsem',
'sysvshm', 'sysvshm',
// 'tidy',
'tokenizer',
'test_helpers', 'test_helpers',
'tidy',
'tokenizer',
#'tokyotyrant',
#'varnish',
'wddx', 'wddx',
'xdebug', 'xdebug',
'xml', 'xml',
@ -105,6 +115,7 @@ $allowed_extensions = [
'xmlrpc', 'xmlrpc',
'xmlwriter', 'xmlwriter',
'xsl', 'xsl',
'yaml',
'zip', 'zip',
'zlib', 'zlib',
]; ];