自学内容网 自学内容网

macos php开发环境之macport安装的php扩展安装,php常用扩展安装,port中可用的所有php扩展列表

macos中,我们使用了port 安装了php后,默认只带有php基本的核心扩展的, 如果需要使用其他的扩展,如 redis, https, xdebug等扩展就需要我们手动来安装对应的扩展。

macos php开发环境 macport安装的php的方法见macos 中使用macport安装,配置,切换多版本php,使用port 安装php扩展方法总结-CSDN博客

本文主要讲解macos中使用macport包安装的php的扩展安装配置方法和port中支持的所有php扩展列表等。

切换当前的php版本使用 sudo port select php php80  这个命令将php80设置为当前的默认php版本,要换其他版本,该 php80为你想要的即可, 如 php56, php72, php83等。

port安装的php默认启用的扩展 查看方法为 php -m 

一般情况下,port install 安装的php, 这些扩展默认被启用:

[PHP Modules]

bcmath

bz2

Core

ctype

date

dom

fileinfo

filter

hash

json

libxml

mysqlnd

pcre

PDO

Phar

random

readline

Reflection

session

SimpleXML

SPL

standard

tokenizer

xml

xmlreader

xmlwriter

zlib

从上面的内容可见, 基本上就是只启用了核心扩展, 另外mysqlnd 这个mysql的链接扩展也是默认启用 了的。 如果需要其他扩展,就需要我们自己安装了。

port常用php扩展安装

对于开发环境,xdebug这个应该是必须要安装的了, 另外就是openssl, curl 网络应用离不开的扩展, iconv字符编码转换,opcache php加速工具, redis, sqlite 数据库支持, mcrypt加解密支持(微信小程序开发数据加解密必备扩展), gettext文本处理扩展, zip压缩文件处理扩展等。

当然这些扩展是否安装,还是要看你自己的需求,个人建议按需安装,用不着的就不用安装!

以下是部分的主要的php版本的常用扩展的安装示例,大家按需自取! 方法都是一样的,先使用select设置当前php版本,然后使用install 安装扩展包

php5.6常用扩展

# 设置当前php为php 5.6
sudo port select --set php php56
# 一键安装php56的常用扩展
sudo port install php56-openssl php56-curl php56-iconv php56-opcache php56-redis php56-sqlite  php56-gettext php56-zip

注意这里的这个php5.6版本的xdebug和 mcrypt 扩展( php56-xdebug php56-mcrypt  )如果当前系统的xcode版本为12以上的话,可能会提示 Error: php56-xxx @2.5.5 cannot currently be compiled with Xcode 12 or later 无法安装 ,因为在php5.6里面使用的xdebug版本是2.x的老版本,这时就只能使用别人编译好的php5.6对应的 xdebug.so  和 mcrypt.so文件了, 这种情况直接去掉这个扩展install其他即可。

php7.2常用扩展

# 设置当前php为php 7.2
sudo port select --set php php72
# 一键安装php72的常用扩展
sudo port install php72-xdebug php72-openssl php72-curl php72-iconv php72-opcache php72-redis php72-sqlite php72-mcrypt  php72-gettext  php72-zip 

php8.0常用扩展

# 设置当前php为php 8.0
sudo port select --set php php80
# 一键安装php80的常用扩展
sudo port install php80-xdebug php80-openssl php80-curl php80-iconv php80-opcache php80-redis php80-sqlite php80-mcrypt php80-gettext php80-zip

php8.3常用扩展


# 设置当前php为php 8.3
sudo port select --set php php83
# 一键安装php83的常用扩展
sudo port install php83-xdebug php83-openssl php83-curl php83-iconv php83-opcache php83-redis php83-sqlite php83-mcrypt php83-gettext php83-zip

macos中port支持的所有php扩展查找方法

在port中,我们可以通过search 来查找我们需要的扩展,支持使用正则来匹配查找内容。 在port里面, php的扩展的命名方式为 php+2位版本号-扩展名 , 如 php83-openssl  代表的是php 8.3的openssl扩展包的名称。 而且使用port安装的php扩展安装后自动启用。

查找所有支持的php版本的扩展

port search --name --line --regex '^php(\d+)-'

查找特定版本(如php 8.0)的PHP扩展:

port search --name --line --regex '^php80-'

已安装的php扩展的配置

 如果需要对扩展进行配置, 可以使用 php --ini 查看已安装的php扩展的配置文件,然后直接修改对应配置文件即可。

执行 php --ini 命令后即可查看当前php的配置信息和以加载的php扩展的配置信息, 示例如下:

Configuration File (php.ini) Path: /opt/local/etc/php80
Loaded Configuration File:         /opt/local/etc/php80/php.ini
Scan for additional .ini files in: /opt/local/var/db/php80
Additional .ini files parsed:      /opt/local/var/db/php80/curl.ini,
/opt/local/var/db/php80/gettext.ini,
/opt/local/var/db/php80/iconv.ini,
/opt/local/var/db/php80/mcrypt.ini,
/opt/local/var/db/php80/opcache.ini,
/opt/local/var/db/php80/openssl.ini,
/opt/local/var/db/php80/redis.ini,
/opt/local/var/db/php80/sqlite.ini,
/opt/local/var/db/php80/xdebug.ini,
/opt/local/var/db/php80/zip.ini

macport中支持的php扩展列表

port search --name --line --regex '^php(\d+)-'

这个命令执行后出来的内容有点长,这里都列出来,让大家做个参考吧。

> port search --name --line --regex '^php(\d+)-'

php5-simpletest1.1.0php develunit testing for PHP
php5-unit-db1.0.1php develDbUnit for PHP
php5-unit-selenium1.0.3php develSelenium RC integration for PHPUnit
php5-web5.3.5lang php wwwMeta-port for PHP web server support
php52-apache2handler5.2.17lang wwwphp52 Apache 2 Handler SAPI
php52-calendar5.2.17phpa PHP extension for converting between different calendar formats
php52-cgi5.2.17lang wwwphp52 CGI SAPI
php52-curl5.2.17php net wwwa PHP interface to the curl library, which lets you download files from servers with a variety of protocols
php52-dba5.2.17php databasesa PHP interface for accessing DBM databases such as BerkeleyDB
php52-exif5.2.17php graphicsa PHP interface to the EXIF image metadata functions
php52-ftp5.2.17php neta PHP extension for accessing file servers using the File Transfer Protocol
php52-gd5.2.17php graphicsa PHP interface to the gd library
php52-gettext5.2.17php devela PHP interface to the gettext natural language support functions
php52-gmp5.2.17php devel matha PHP interface to GMP, the GNU multiprocessing library through which you can work with arbitrary-length integers
php52-iconv5.2.17php textproca PHP interface to the libiconv character encoding conversion functions
php52-imap5.2.17php maila PHP interface to the IMAP protocol
php52-ipc5.2.17phpinterprocess communication extensions for PHP
php52-ldap5.2.17php databasesa PHP interface to LDAP
php52-mbstring5.2.17php textproca PHP extension for manipulating strings in multibyte encodings
php52-mcrypt5.2.17php securitya PHP interface to the mcrypt library, which offers a wide variety of algorithms
php52-mssql5.2.17php databasesa PHP interface to MSSQL using FreeTDS, including the mssql and pdo_dblib extensions
php52-mysql5.2.17php databasesa PHP interface to MySQL databases, including the mysql, mysqli and pdo_mysql extensions
php52-odbc5.2.17php databasesa PHP interface for accessing databases via Open DataBase Connectivity (ODBC)
php52-openssl5.2.17php devel securitya PHP interface to OpenSSL signature-generation and -verification and data-encryption and -decryption functions
php52-oracle5.2.17php databasesa PHP interface to Oracle, including the oci8 and pdo_oci extensions
php52-pcntl5.2.17php sysutilsa PHP interface to Unix-style process creation, program execution, signal handling and process termination functions
php52-posix5.2.17php sysutilsa PHP interface to additional POSIX functions
php52-postgresql5.2.17php databasesa PHP interface to PostgreSQL, including the pgsql and pdo_pgsql extensions
php52-pspell5.2.17php textproca PHP interface to the aspell library, which lets you check spelling and offer spelling suggestions
php52-snmp5.2.17php sysutilsa PHP interface to the Simple Network Management Protocol (SNMP)
php52-soap5.2.17php neta PHP extension for writing SOAP clients and servers
php52-sockets5.2.17php neta PHP interface to BSD socket communication functions
php52-suhosin0.9.32.1php security wwwAdvanced protection extension for PHP
php52-tidy5.2.17php wwwa PHP interface to tidy, the HTML cleaning and repair utility
php52-wddx5.2.17php textproca PHP interface to Web Distributed Data Exchange
php52-xmlrpc5.2.17php textproca PHP extension for writing XML-RPC clients and servers
php52-xsl5.2.17php textproca PHP interface to libxslt, which implements the XSL standard and lets you perform XSL transformations
php52-zip1.16.1php archiversPHP zip functions
php53-amf0.9.2php develActionScript Message Format extension
php53-amqp1.9.3php netAMQP interface for PHP
php53-apache2handler5.3.29lang wwwphp53 Apache 2 Handler SAPI
php53-APC3.1.13php develAlternative PHP Cache
php53-APCu4.0.11php develAPC User Cache
php53-bbcode1.0.3b1php develBBCode parsing Extension
php53-big_int1.0.7php develbig_int library
php53-cairo0.3.2php develCairo Graphics Library Extension
php53-cairo_wrapper0.2.4php develCairo Wrapper Extension
php53-calendar5.3.29phpa PHP extension for converting between different calendar formats
php53-cgi5.3.29lang wwwphp53 CGI SAPI
php53-code-coverage1.2.12php develcode coverage information for PHP
php53-colorer0.7php develSyntax highlighting
php53-crack0.4php mail devel{"Good} Password\" Checking Utility
php53-curl5.3.29php net wwwa PHP interface to the curl library, which lets you download files from servers with a variety of protocols
php53-dba5.3.29php databasesa PHP interface for accessing DBM databases such as BerkeleyDB
php53-dbase5.1.1php databasesa PHP interface for accessing dBase databases
php53-eaccelerator0.9.6.1php www develphp5 extension for PHP acceleration, optimization, and dynamic content caching
php53-enchant5.3.29php textproc devela PHP interface to enchant
php53-esmtp0.3.1php develESMTP client extension
php53-excel1.0.2php textprocPHP interface to LibXL for reading and writing Microsoft Excel spreadsheets
php53-exif5.3.29php graphicsa PHP interface to the EXIF image metadata functions
php53-file-iterator1.3.3php develfile iterator for PHP
php53-fpm5.3.29lang wwwphp53 FPM SAPI
php53-FreeImage0.1php develProvides a wrapper to the FreeImage library.
php53-ftp5.3.29php neta PHP extension for accessing file servers using the File Transfer Protocol
php53-gd5.3.29php graphicsa PHP interface to the gd library
php53-gdchart0.2.0php develGDChart Based Graphing Interface
php53-gearman1.1.2php net develLibrary to provide API for communicating with gearmand, using libgearman.
php53-geoip1.0.8php develMap IP address to geographic places
php53-gettext5.3.29php devela PHP interface to the gettext natural language support functions
php53-gmagick1.1.7RC3php develProvides a wrapper to the GraphicsMagick library
php53-gmp5.3.29php devel matha PHP interface to GMP, the GNU multiprocessing library through which you can work with arbitrary-length integers
php53-gtk2.0.3-20121108php x11PHP-GTK: Gtk+ bindings for PHP 5.
php53-hidef0.1.13php develConstants for real
php53-html_parse1.0.0php textproc develHTML parser extension
php53-htscanner1.0.1php wwwa PHP extension to enable the use of per-directory htaccess-like PHP configuration files
php53-http1.7.6php wwwExtended HTTP Support
php53-http22.6.0php wwwExtended HTTP Support
php53-iconv5.3.29php textproca PHP interface to the libiconv character encoding conversion functions
php53-igbinary2.0.8php net develPHP serializer.
php53-imagick3.3.0php graphicsPHP extension to create and modify images with ImageMagick
php53-imap5.3.29php maila PHP interface to the IMAP protocol
php53-imlib20.1.00php develProvides an image manipulation interface using libimlib2
php53-inclued0.1.3php develClued-in about your inclueds
php53-intl5.3.29php develinternationalization extension for PHP
php53-ipc5.3.29phpinterprocess communication extensions for PHP
php53-jsmin2.0.1php develPHP API for minifying and uglifying JavaScript
php53-Judy1.0.2phpsparse dynamic arrays
php53-ldap5.3.29php databasesa PHP interface to LDAP
php53-libev20131219php develobject-oriented binding to libev
php53-libevent0.1.0php develPHP wrapper for libevent
php53-lzf1.6.8php develHandles LZF compression / decompression.
php53-magickwand1.0.9-2php graphicsMagickWand for PHP
php53-mailparse2.1.6php mail develEmail message manipulation
php53-markdown1.0.0php textproc develA fast Markdown parser
php53-mbstring5.3.29php textproca PHP extension for manipulating strings in multibyte encodings
php53-mcrypt5.3.29php securitya PHP interface to the mcrypt library, which offers a wide variety of algorithms
php53-memcache3.0.8php net develPHP bindings for memcache
php53-memcached2.2.0php net develPHP bindings for memcache
php53-midgard212.09.1phpA content management system
php53-mongo1.6.16php databases develMongo Database Driver
php53-mssql5.3.29php databasesa PHP interface to MSSQL using FreeTDS, including the mssql and pdo_dblib extensions
php53-mysql5.3.29php databasesa PHP interface to MySQL databases, including the mysql, mysqli and pdo_mysql extensions
php53-oauth1.2.3php develoauth consumer extension
php53-odbc5.3.29php databasesa PHP interface for accessing databases via Open DataBase Connectivity (ODBC)
php53-opcache7.0.5phpOPcache improves PHP performance by storing precompiled script bytecode in shared memory, thereby removing the need for PHP to load and parse scripts on each request.
php53-openssl5.3.29php devel securitya PHP interface to OpenSSL signature-generation and -verification and data-encryption and -decryption functions
php53-oracle5.3.29php databasesa PHP interface to Oracle, including the oci8 and pdo_oci extensions
php53-pcntl5.3.29php sysutilsa PHP interface to Unix-style process creation, program execution, signal handling and process termination functions
php53-pdflib4.1.4php print textprocPHP bindings for pdflib
php53-peb0.20bphp develPHP-Erlang Bridge
php53-phalcon2.0.9phpfull stack PHP framework written as an extension
php53-phalcon22.0.9phpfull stack PHP framework written as an extension
php53-pop31.0.2php mail develPOP3 Client Library
php53-posix5.3.29php sysutilsa PHP interface to additional POSIX functions
php53-postgresql5.3.29php databasesa PHP interface to PostgreSQL, including the pgsql and pdo_pgsql extensions
php53-propro1.0.2phpa reusable property proxy API
php53-pspell5.3.29php textproca PHP interface to the aspell library, which lets you check spelling and offer spelling suggestions
php53-raphf1.1.2phpa reusable persistent handle and resource factory API
php53-rar4.2.0php develA PECL extension to create and read rar files.
php53-redis4.3.0php databasesan API for communicating with a Redis database from PHP
php53-rrd1.1.3php net develPHP rrdtool extension
php53-scrypt1.4.3php securitya PHP wrapper for scrypt
php53-snmp5.3.29php sysutilsa PHP interface to the Simple Network Management Protocol (SNMP)
php53-soap5.3.29php neta PHP extension for writing SOAP clients and servers
php53-sockets5.3.29php neta PHP interface to BSD socket communication functions
php53-solr2.4.0php devela PHP interface to Apache Solr
php53-sphinx1.3.3php textprocPHP bindings for Sphinx full-text search
php53-SPL_Types0.4.0php develStandard PHP Library, Types Addon
php53-sqlite5.3.29php databasesa PHP interface to SQLite, including the sqlite, sqlite3 and pdo_sqlite extensions
php53-ssh20.13php netPHP bindings for libssh2
php53-stomp1.0.9php develPECL extension of stomp client
php53-suhosin0.9.37.1php security wwwAdvanced protection extension for PHP
php53-svm0.1.9php mathPHP bindings for libsvm, a support vector machine implementation
php53-svn1.0.3php develPHP bindings for Subversion
php53-swoole1.10.5php net develan event-driven asynchronous & concurrent & coroutine networking engine with high performance for PHP
php53-syck0.9.3php net develPHP bindings for syck
php53-taint1.2.2phpdetects XSS and SQL-injection vulnerabilities
php53-text-template1.1.4php develsimple template engine for PHP
php53-tidy5.3.29php wwwa PHP interface to tidy, the HTML cleaning and repair utility
php53-timer1.0.4php develutility class for timing in PHP
php53-timezonedb2021.1php develA PECL Timezone Database.
php53-token-stream1.1.5php develwrapper around PHP's tokenizer extension
php53-Twig1.16.2php develEnhances the performance of the Twig runtime engine.
php53-unit3.7.22php develunit testing for PHP
php53-unit-mock-objects1.2.3php develMock Object library for PHPUnit
php53-uploadprogress1.1.4php www develAn extension to track progress of a file upload.
php53-uuid1.0.5php net wwwA wrapper around libuuid from the ext2utils project.
php53-vld0.13.0php develDump the internal representation of PHP scripts
php53-wddx5.3.29php textproca PHP interface to Web Distributed Data Exchange
php53-xcache3.2.0php wwwfast, stable PHP opcode cacher
php53-xdebug2.2.7php net develphp debugging extension
php53-xhprof0.9.4php develA Hierarchical Profiler for PHP
php53-xmlrpc5.3.29php textproca PHP extension for writing XML-RPC clients and servers
php53-xrange1.3.2php develNumeric iterator primitives
php53-xsl5.3.29php textproca PHP interface to libxslt, which implements the XSL standard and lets you perform XSL transformations
php53-xslcache0.7.2php www devela modification of PHP's standard XSL extension that caches the parsed XSL stylesheet representation
php53-yaf2.3.5php net devela fast php framework written in c, built in php-ext
php53-yaml1.3.1php devela PHP interface to the YAML parsing library
php53-yaz1.2.4php net databases develPHP/PECL extension for the Z39.50 protocol
php53-zip1.16.1php archiversPHP zip functions
php53-zstd0.11.0php develZstandard compression
php54-amf0.9.2php develActionScript Message Format extension
php54-amqp1.9.3php netAMQP interface for PHP
php54-apache2handler5.4.45lang wwwphp54 Apache 2 Handler SAPI
php54-APC3.1.13php develAlternative PHP Cache
php54-APCu4.0.11php develAPC User Cache
php54-bbcode1.0.3b1php develBBCode parsing Extension
php54-big_int1.0.7php develbig_int library
php54-cairo0.3.2php develCairo Graphics Library Extension
php54-cairo_wrapper0.2.4php develCairo Wrapper Extension
php54-calendar5.4.45phpa PHP extension for converting between different calendar formats
php54-cgi5.4.45lang wwwphp54 CGI SAPI
php54-code-coverage1.2.12php develcode coverage information for PHP
php54-curl5.4.45php net wwwa PHP interface to the curl library, which lets you download files from servers with a variety of protocols
php54-dba5.4.45php databasesa PHP interface for accessing DBM databases such as BerkeleyDB
php54-dbase5.1.1php databasesa PHP interface for accessing dBase databases
php54-enchant5.4.45php textproc devela PHP interface to enchant
php54-esmtp0.3.1php develESMTP client extension
php54-event3.1.4php develefficiently schedule I/O, time and signal based events
php54-excel1.0.2php textprocPHP interface to LibXL for reading and writing Microsoft Excel spreadsheets
php54-exif5.4.45php graphicsa PHP interface to the EXIF image metadata functions
php54-file-iterator1.3.3php develfile iterator for PHP
php54-fpm5.4.45lang wwwphp54 FPM SAPI
php54-FreeImage0.1php develProvides a wrapper to the FreeImage library.
php54-ftp5.4.45php neta PHP extension for accessing file servers using the File Transfer Protocol
php54-gd5.4.45php graphicsa PHP interface to the gd library
php54-gdchart0.2.0php develGDChart Based Graphing Interface
php54-gearman1.1.2php net develLibrary to provide API for communicating with gearmand, using libgearman.
php54-geoip1.0.8php develMap IP address to geographic places
php54-gettext5.4.45php devela PHP interface to the gettext natural language support functions
php54-gmagick1.1.7RC3php develProvides a wrapper to the GraphicsMagick library
php54-gmp5.4.45php devel matha PHP interface to GMP, the GNU multiprocessing library through which you can work with arbitrary-length integers
php54-gtk2.0.3-20121108php x11PHP-GTK: Gtk+ bindings for PHP 5.
php54-hidef0.1.13php develConstants for real
php54-html_parse1.0.0php textproc develHTML parser extension
php54-htscanner1.0.1php wwwa PHP extension to enable the use of per-directory htaccess-like PHP configuration files
php54-http1.7.6php wwwExtended HTTP Support
php54-http22.6.0php wwwExtended HTTP Support
php54-iconv5.4.45php textproca PHP interface to the libiconv character encoding conversion functions
php54-igbinary2.0.8php net develPHP serializer.
php54-imagick3.7.0php graphicsPHP extension to create and modify images with ImageMagick
php54-imap5.4.45php maila PHP interface to the IMAP protocol
php54-imlib20.1.00php develProvides an image manipulation interface using libimlib2
php54-inclued0.1.3php develClued-in about your inclueds
php54-intl5.4.45php develinternationalization extension for PHP
php54-ipc5.4.45phpinterprocess communication extensions for PHP
php54-jsmin2.0.1php develPHP API for minifying and uglifying JavaScript
php54-Judy1.0.2phpsparse dynamic arrays
php54-ldap5.4.45php databasesa PHP interface to LDAP
php54-libev20131219php develobject-oriented binding to libev
php54-libevent0.1.0php develPHP wrapper for libevent
php54-lzf1.6.8php develHandles LZF compression / decompression.
php54-magickwand1.0.9-2php graphicsMagickWand for PHP
php54-mailparse2.1.6php mail develEmail message manipulation
php54-markdown1.0.0php textproc develA fast Markdown parser
php54-mbstring5.4.45php textproca PHP extension for manipulating strings in multibyte encodings
php54-mcrypt5.4.45php securitya PHP interface to the mcrypt library, which offers a wide variety of algorithms
php54-memcache3.0.8php net develPHP bindings for memcache
php54-memcached2.2.0php net develPHP bindings for memcache
php54-meminfo1.0.5phpextension to examine PHP memory contents
php54-midgard212.09.1phpA content management system
php54-mongo1.6.16php databases develMongo Database Driver
php54-mongodb1.2.11php databases develMongoDB Database Driver
php54-mssql5.4.45php databasesa PHP interface to MSSQL using FreeTDS, including the mssql and pdo_dblib extensions
php54-mysql5.4.45php databasesa PHP interface to MySQL databases, including the mysql, mysqli and pdo_mysql extensions
php54-oauth1.2.3php develoauth consumer extension
php54-odbc5.4.45php databasesa PHP interface for accessing databases via Open DataBase Connectivity (ODBC)
php54-opcache7.0.5phpOPcache improves PHP performance by storing precompiled script bytecode in shared memory, thereby removing the need for PHP to load and parse scripts on each request.
php54-openssl5.4.45php devel securitya PHP interface to OpenSSL signature-generation and -verification and data-encryption and -decryption functions
php54-oracle5.4.45php databasesa PHP interface to Oracle, including the oci8 and pdo_oci extensions
php54-pcntl5.4.45php sysutilsa PHP interface to Unix-style process creation, program execution, signal handling and process termination functions
php54-pdflib4.1.4php print textprocPHP bindings for pdflib
php54-peb0.20bphp develPHP-Erlang Bridge
php54-phalcon2.0.13phpfull stack PHP framework written as an extension
php54-phalcon22.0.13phpfull stack PHP framework written as an extension
php54-pop31.0.2php mail develPOP3 Client Library
php54-posix5.4.45php sysutilsa PHP interface to additional POSIX functions
php54-postgresql5.4.45php databasesa PHP interface to PostgreSQL, including the pgsql and pdo_pgsql extensions
php54-propro1.0.2phpa reusable property proxy API
php54-pspell5.4.45php textproca PHP interface to the aspell library, which lets you check spelling and offer spelling suggestions
php54-raphf1.1.2phpa reusable persistent handle and resource factory API
php54-rar4.2.0php develA PECL extension to create and read rar files.
php54-redis4.3.0php databasesan API for communicating with a Redis database from PHP
php54-rrd1.1.3php net develPHP rrdtool extension
php54-scrypt1.4.3php securitya PHP wrapper for scrypt
php54-snmp5.4.45php sysutilsa PHP interface to the Simple Network Management Protocol (SNMP)
php54-soap5.4.45php neta PHP extension for writing SOAP clients and servers
php54-sockets5.4.45php neta PHP interface to BSD socket communication functions
php54-solr2.4.0php devela PHP interface to Apache Solr
php54-sphinx1.3.3php textprocPHP bindings for Sphinx full-text search
php54-SPL_Types0.4.0php develStandard PHP Library, Types Addon
php54-sqlite5.4.45php databasesa PHP interface to SQLite, including the sqlite3 and pdo_sqlite extensions
php54-ssh20.13php netPHP bindings for libssh2
php54-stomp1.0.9php develPECL extension of stomp client
php54-suhosin0.9.38php security wwwAdvanced protection extension for PHP
php54-svm0.1.9php mathPHP bindings for libsvm, a support vector machine implementation
php54-svn1.0.3php develPHP bindings for Subversion
php54-swoole1.10.5php net develan event-driven asynchronous & concurrent & coroutine networking engine with high performance for PHP
php54-syck0.9.3php net develPHP bindings for syck
php54-taint1.2.2phpdetects XSS and SQL-injection vulnerabilities
php54-text-template1.1.4php develsimple template engine for PHP
php54-tidy5.4.45php wwwa PHP interface to tidy, the HTML cleaning and repair utility
php54-timer1.0.4php develutility class for timing in PHP
php54-timezonedb2024.2php develA PECL Timezone Database.
php54-token-stream1.1.5php develwrapper around PHP's tokenizer extension
php54-Twig1.16.2php develEnhances the performance of the Twig runtime engine.
php54-unit3.7.22php develunit testing for PHP
php54-unit-mock-objects1.2.3php develMock Object library for PHPUnit
php54-uploadprogress1.1.4php www develAn extension to track progress of a file upload.
php54-uuid1.0.5php net wwwA wrapper around libuuid from the ext2utils project.
php54-vld0.14.0php develDump the internal representation of PHP scripts
php54-wddx5.4.45php textproca PHP interface to Web Distributed Data Exchange
php54-xcache3.2.0php wwwfast, stable PHP opcode cacher
php54-xdebug2.4.1php net develphp debugging extension
php54-xhprof0.9.4php develA Hierarchical Profiler for PHP
php54-xmlrpc5.4.45php textproca PHP extension for writing XML-RPC clients and servers
php54-xrange1.3.2php develNumeric iterator primitives
php54-xsl5.4.45php textproca PHP interface to libxslt, which implements the XSL standard and lets you perform XSL transformations
php54-xslcache0.7.2php www devela modification of PHP's standard XSL extension that caches the parsed XSL stylesheet representation
php54-yaf2.3.5php net devela fast php framework written in c, built in php-ext
php54-yaml1.3.1php devela PHP interface to the YAML parsing library
php54-yaz1.2.4php net databases develPHP/PECL extension for the Z39.50 protocol
php54-zip1.22.4php archiversPHP zip functions
php54-zstd0.11.0php develZstandard compression
php55-amf0.9.2php develActionScript Message Format extension
php55-amqp1.9.3php netAMQP interface for PHP
php55-apache2handler5.5.38lang wwwphp55 Apache 2 Handler SAPI
php55-APCu4.0.11php develAPC User Cache
php55-bbcode1.0.3b1php develBBCode parsing Extension
php55-big_int1.0.7php develbig_int library
php55-cairo0.3.2php develCairo Graphics Library Extension
php55-cairo_wrapper0.2.4php develCairo Wrapper Extension
php55-calendar5.5.38phpa PHP extension for converting between different calendar formats
php55-cgi5.5.38lang wwwphp55 CGI SAPI
php55-code-coverage1.2.12php develcode coverage information for PHP
php55-curl5.5.38php net wwwa PHP interface to the curl library, which lets you download files from servers with a variety of protocols
php55-dba5.5.38php databasesa PHP interface for accessing DBM databases such as BerkeleyDB
php55-dbase5.1.1php databasesa PHP interface for accessing dBase databases
php55-enchant5.5.38php textproc devela PHP interface to enchant
php55-esmtp0.3.1php develESMTP client extension
php55-event3.1.4php develefficiently schedule I/O, time and signal based events
php55-excel1.0.2php textprocPHP interface to LibXL for reading and writing Microsoft Excel spreadsheets
php55-exif5.5.38php graphicsa PHP interface to the EXIF image metadata functions
php55-file-iterator1.3.3php develfile iterator for PHP
php55-fpm5.5.38lang wwwphp55 FPM SAPI
php55-FreeImage0.1php develProvides a wrapper to the FreeImage library.
php55-ftp5.5.38php neta PHP extension for accessing file servers using the File Transfer Protocol
php55-gd5.5.38php graphicsa PHP interface to the gd library
php55-gdchart0.2.0php develGDChart Based Graphing Interface
php55-gearman1.1.2php net develLibrary to provide API for communicating with gearmand, using libgearman.
php55-geoip1.0.8php develMap IP address to geographic places
php55-gettext5.5.38php devela PHP interface to the gettext natural language support functions
php55-gmagick1.1.7RC3php develProvides a wrapper to the GraphicsMagick library
php55-gmp5.5.38php devel matha PHP interface to GMP, the GNU multiprocessing library through which you can work with arbitrary-length integers
php55-hidef0.1.13php develConstants for real
php55-html_parse1.0.0php textproc develHTML parser extension
php55-htscanner1.0.1php wwwa PHP extension to enable the use of per-directory htaccess-like PHP configuration files
php55-http1.7.6php wwwExtended HTTP Support
php55-http22.6.0php wwwExtended HTTP Support
php55-iconv5.5.38php textproca PHP interface to the libiconv character encoding conversion functions
php55-igbinary2.0.8php net develPHP serializer.
php55-imagick3.7.0php graphicsPHP extension to create and modify images with ImageMagick
php55-imap5.5.38php maila PHP interface to the IMAP protocol
php55-imlib20.1.00php develProvides an image manipulation interface using libimlib2
php55-intl5.5.38php develinternationalization extension for PHP
php55-ipc5.5.38phpinterprocess communication extensions for PHP
php55-jsmin2.0.1php develPHP API for minifying and uglifying JavaScript
php55-Judy1.0.2phpsparse dynamic arrays
php55-ldap5.5.38php databasesa PHP interface to LDAP
php55-libev20131219php develobject-oriented binding to libev
php55-libevent0.1.0php develPHP wrapper for libevent
php55-lzf1.6.8php develHandles LZF compression / decompression.
php55-magickwand1.0.9-2php graphicsMagickWand for PHP
php55-mailparse2.1.6php mail develEmail message manipulation
php55-markdown1.0.0php textproc develA fast Markdown parser
php55-mbstring5.5.38php textproca PHP extension for manipulating strings in multibyte encodings
php55-mcrypt5.5.38php securitya PHP interface to the mcrypt library, which offers a wide variety of algorithms
php55-memcache3.0.8php net develPHP bindings for memcache
php55-memcached2.2.0php net develPHP bindings for memcache
php55-meminfo1.0.5phpextension to examine PHP memory contents
php55-mongo1.6.16php databases develMongo Database Driver
php55-mongodb1.5.5php databases develMongoDB Database Driver
php55-mssql5.5.38php databasesa PHP interface to MSSQL using FreeTDS, including the mssql and pdo_dblib extensions
php55-mysql5.5.38php databasesa PHP interface to MySQL databases, including the mysql, mysqli and pdo_mysql extensions
php55-oauth1.2.3php develoauth consumer extension
php55-odbc5.5.38php databasesa PHP interface for accessing databases via Open DataBase Connectivity (ODBC)
php55-opcache5.5.38phpOPcache improves PHP performance by storing precompiled script bytecode in shared memory, thereby removing the need for PHP to load and parse scripts on each request.
php55-openssl5.5.38php devel securitya PHP interface to OpenSSL signature-generation and -verification and data-encryption and -decryption functions
php55-oracle5.5.38php databasesa PHP interface to Oracle, including the oci8 and pdo_oci extensions
php55-pcntl5.5.38php sysutilsa PHP interface to Unix-style process creation, program execution, signal handling and process termination functions
php55-pdflib4.1.4php print textprocPHP bindings for pdflib
php55-peb0.20bphp develPHP-Erlang Bridge
php55-phalcon3.4.4phpfull stack PHP framework written as an extension
php55-phalcon22.0.13phpfull stack PHP framework written as an extension
php55-phalcon33.4.5phpfull stack PHP framework written as an extension
php55-pop31.0.2php mail develPOP3 Client Library
php55-posix5.5.38php sysutilsa PHP interface to additional POSIX functions
php55-postgresql5.5.38php databasesa PHP interface to PostgreSQL, including the pgsql and pdo_pgsql extensions
php55-propro1.0.2phpa reusable property proxy API
php55-pspell5.5.38php textproca PHP interface to the aspell library, which lets you check spelling and offer spelling suggestions
php55-raphf1.1.2phpa reusable persistent handle and resource factory API
php55-rar4.2.0php develA PECL extension to create and read rar files.
php55-redis4.3.0php databasesan API for communicating with a Redis database from PHP
php55-rrd1.1.3php net develPHP rrdtool extension
php55-scrypt1.4.3php securitya PHP wrapper for scrypt
php55-snmp5.5.38php sysutilsa PHP interface to the Simple Network Management Protocol (SNMP)
php55-soap5.5.38php neta PHP extension for writing SOAP clients and servers
php55-sockets5.5.38php neta PHP interface to BSD socket communication functions
php55-solr2.4.0php devela PHP interface to Apache Solr
php55-sphinx1.3.3php textprocPHP bindings for Sphinx full-text search
php55-SPL_Types0.4.0php develStandard PHP Library, Types Addon
php55-sqlite5.5.38php databasesa PHP interface to SQLite, including the sqlite3 and pdo_sqlite extensions
php55-ssh20.13php netPHP bindings for libssh2
php55-stomp1.0.9php develPECL extension of stomp client
php55-suhosin0.9.38php security wwwAdvanced protection extension for PHP
php55-svm0.1.9php mathPHP bindings for libsvm, a support vector machine implementation
php55-svn1.0.3php develPHP bindings for Subversion
php55-swoole2.0.11php net develan event-driven asynchronous & concurrent & coroutine networking engine with high performance for PHP
php55-syck0.9.3php net develPHP bindings for syck
php55-text-template1.1.4php develsimple template engine for PHP
php55-tidy5.5.38php wwwa PHP interface to tidy, the HTML cleaning and repair utility
php55-timer1.0.4php develutility class for timing in PHP
php55-timezonedb2024.2php develA PECL Timezone Database.
php55-token-stream1.1.5php develwrapper around PHP's tokenizer extension
php55-Twig1.16.2php develEnhances the performance of the Twig runtime engine.
php55-unit3.7.22php develunit testing for PHP
php55-unit-mock-objects1.2.3php develMock Object library for PHPUnit
php55-uploadprogress1.1.4php www develAn extension to track progress of a file upload.
php55-uuid1.0.5php net wwwA wrapper around libuuid from the ext2utils project.
php55-vld0.14.0php develDump the internal representation of PHP scripts
php55-wddx5.5.38php textproca PHP interface to Web Distributed Data Exchange
php55-xcache3.2.0php wwwfast, stable PHP opcode cacher
php55-xdebug2.5.5php net develphp debugging extension
php55-xhprof0.9.4php develA Hierarchical Profiler for PHP
php55-xmlrpc5.5.38php textproca PHP extension for writing XML-RPC clients and servers
php55-xrange1.3.2php develNumeric iterator primitives
php55-xsl5.5.38php textproca PHP interface to libxslt, which implements the XSL standard and lets you perform XSL transformations
php55-xslcache0.7.2php www devela modification of PHP's standard XSL extension that caches the parsed XSL stylesheet representation
php55-yaf2.3.5php net devela fast php framework written in c, built in php-ext
php55-yaml1.3.1php devela PHP interface to the YAML parsing library
php55-yaz1.2.4php net databases develPHP/PECL extension for the Z39.50 protocol
php55-zip1.22.4php archiversPHP zip functions
php55-zstd0.11.0php develZstandard compression
php56-amf0.9.2php develActionScript Message Format extension
php56-amqp1.11.0php netAMQP interface for PHP
php56-apache2handler5.6.40lang wwwphp56 Apache 2 Handler SAPI
php56-APCu4.0.11php develAPC User Cache
php56-bbcode1.0.3b1php develBBCode parsing Extension
php56-big_int1.0.7php develbig_int library
php56-cairo0.3.2php develCairo Graphics Library Extension
php56-cairo_wrapper0.2.4php develCairo Wrapper Extension
php56-calendar5.6.40phpa PHP extension for converting between different calendar formats
php56-cgi5.6.40lang wwwphp56 CGI SAPI
php56-curl5.6.40php net wwwa PHP interface to the curl library, which lets you download files from servers with a variety of protocols
php56-dba5.6.40php databasesa PHP interface for accessing DBM databases such as BerkeleyDB
php56-dbase5.1.1php databasesa PHP interface for accessing dBase databases
php56-enchant5.6.40php textproc devela PHP interface to enchant
php56-esmtp0.3.1php develESMTP client extension
php56-event3.1.4php develefficiently schedule I/O, time and signal based events
php56-excel1.0.2php textprocPHP interface to LibXL for reading and writing Microsoft Excel spreadsheets
php56-exif5.6.40php graphicsa PHP interface to the EXIF image metadata functions
php56-fpm5.6.40lang wwwphp56 FPM SAPI
php56-FreeImage0.1php develProvides a wrapper to the FreeImage library.
php56-ftp5.6.40php neta PHP extension for accessing file servers using the File Transfer Protocol
php56-gd5.6.40php graphicsa PHP interface to the gd library
php56-gdchart0.2.0php develGDChart Based Graphing Interface
php56-gearman1.1.2php net develLibrary to provide API for communicating with gearmand, using libgearman.
php56-geoip1.0.8php develMap IP address to geographic places
php56-gettext5.6.40php devela PHP interface to the gettext natural language support functions
php56-gmagick1.1.7RC3php develProvides a wrapper to the GraphicsMagick library
php56-gmp5.6.40php devel matha PHP interface to GMP, the GNU multiprocessing library through which you can work with arbitrary-length integers
php56-html_parse1.0.0php textproc develHTML parser extension
php56-htscanner1.0.1php wwwa PHP extension to enable the use of per-directory htaccess-like PHP configuration files
php56-http22.6.0php wwwExtended HTTP Support
php56-iconv5.6.40php textproca PHP interface to the libiconv character encoding conversion functions
php56-igbinary2.0.8php net develPHP serializer.
php56-imagick3.7.0php graphicsPHP extension to create and modify images with ImageMagick
php56-imap5.6.40php maila PHP interface to the IMAP protocol
php56-imlib20.1.00php develProvides an image manipulation interface using libimlib2
php56-intl5.6.40php develinternationalization extension for PHP
php56-ipc5.6.40phpinterprocess communication extensions for PHP
php56-jsmin2.0.1php develPHP API for minifying and uglifying JavaScript
php56-Judy1.0.2phpsparse dynamic arrays
php56-ldap5.6.40php databasesa PHP interface to LDAP
php56-libev20131219php develobject-oriented binding to libev
php56-libevent0.1.0php develPHP wrapper for libevent
php56-lzf1.6.8php develHandles LZF compression / decompression.
php56-magickwand1.0.9-2php graphicsMagickWand for PHP
php56-mailparse2.1.6php mail develEmail message manipulation
php56-markdown1.0.0php textproc develA fast Markdown parser
php56-mbstring5.6.40php textproca PHP extension for manipulating strings in multibyte encodings
php56-mcrypt5.6.40php securitya PHP interface to the mcrypt library, which offers a wide variety of algorithms
php56-memcache3.0.8php net develPHP bindings for memcache
php56-memcached2.2.0php net develPHP bindings for memcache
php56-meminfo1.1.1phpextension to examine PHP memory contents
php56-mongo1.6.16php databases develMongo Database Driver
php56-mongodb1.7.5php databases develMongoDB Database Driver
php56-mssql5.6.40php databasesa PHP interface to MSSQL using FreeTDS, including the mssql and pdo_dblib extensions
php56-mysql5.6.40php databasesa PHP interface to MySQL databases, including the mysql, mysqli and pdo_mysql extensions
php56-oauth1.2.3php develoauth consumer extension
php56-odbc5.6.40php databasesa PHP interface for accessing databases via Open DataBase Connectivity (ODBC)
php56-opcache5.6.40phpOPcache improves PHP performance by storing precompiled script bytecode in shared memory, thereby removing the need for PHP to load and parse scripts on each request.
php56-openssl5.6.40php devel securitya PHP interface to OpenSSL signature-generation and -verification and data-encryption and -decryption functions
php56-oracle5.6.40php databasesa PHP interface to Oracle, including the oci8 and pdo_oci extensions
php56-pcntl5.6.40php sysutilsa PHP interface to Unix-style process creation, program execution, signal handling and process termination functions
php56-pdflib4.1.4php print textprocPHP bindings for pdflib
php56-peb0.20bphp develPHP-Erlang Bridge
php56-phalcon3.4.4phpfull stack PHP framework written as an extension
php56-phalcon22.0.13phpfull stack PHP framework written as an extension
php56-phalcon33.4.5phpfull stack PHP framework written as an extension
php56-pop31.0.2php mail develPOP3 Client Library
php56-posix5.6.40php sysutilsa PHP interface to additional POSIX functions
php56-postgresql5.6.40php databasesa PHP interface to PostgreSQL, including the pgsql and pdo_pgsql extensions
php56-propro1.0.2phpa reusable property proxy API
php56-pspell5.6.40php textproca PHP interface to the aspell library, which lets you check spelling and offer spelling suggestions
php56-raphf1.1.2phpa reusable persistent handle and resource factory API
php56-rar4.2.0php develA PECL extension to create and read rar files.
php56-redis4.3.0php databasesan API for communicating with a Redis database from PHP
php56-rrd1.1.3php net develPHP rrdtool extension
php56-scrypt1.4.3php securitya PHP wrapper for scrypt
php56-snmp5.6.40php sysutilsa PHP interface to the Simple Network Management Protocol (SNMP)
php56-soap5.6.40php neta PHP extension for writing SOAP clients and servers
php56-sockets5.6.40php neta PHP interface to BSD socket communication functions
php56-solr2.4.0php devela PHP interface to Apache Solr
php56-sphinx1.3.3php textprocPHP bindings for Sphinx full-text search
php56-SPL_Types0.4.0php develStandard PHP Library, Types Addon
php56-sqlite5.6.40php databasesa PHP interface to SQLite, including the sqlite3 and pdo_sqlite extensions
php56-ssh20.13php netPHP bindings for libssh2
php56-stomp1.0.9php develPECL extension of stomp client
php56-suhosin0.9.38php security wwwAdvanced protection extension for PHP
php56-svm0.1.9php mathPHP bindings for libsvm, a support vector machine implementation
php56-svn1.0.3php develPHP bindings for Subversion
php56-swoole2.0.11php net develan event-driven asynchronous & concurrent & coroutine networking engine with high performance for PHP
php56-syck0.9.3php net develPHP bindings for syck
php56-tidy5.6.40php wwwa PHP interface to tidy, the HTML cleaning and repair utility
php56-timezonedb2024.2php develA PECL Timezone Database.
php56-Twig1.16.2php develEnhances the performance of the Twig runtime engine.
php56-uploadprogress1.1.4php www develAn extension to track progress of a file upload.
php56-uuid1.0.5php net wwwA wrapper around libuuid from the ext2utils project.
php56-vld0.14.0php develDump the internal representation of PHP scripts
php56-wddx5.6.40php textproca PHP interface to Web Distributed Data Exchange
php56-xcache3.2.0php wwwfast, stable PHP opcode cacher
php56-xdebug2.5.5php net develphp debugging extension
php56-xhprof0.9.4php develA Hierarchical Profiler for PHP
php56-xmlrpc5.6.40php textproca PHP extension for writing XML-RPC clients and servers
php56-xrange1.3.2php develNumeric iterator primitives
php56-xsl5.6.40php textproca PHP interface to libxslt, which implements the XSL standard and lets you perform XSL transformations
php56-xslcache0.7.2php www devela modification of PHP's standard XSL extension that caches the parsed XSL stylesheet representation
php56-yaf2.3.5php net devela fast php framework written in c, built in php-ext
php56-yaml1.3.1php devela PHP interface to the YAML parsing library
php56-yaz1.2.4php net databases develPHP/PECL extension for the Z39.50 protocol
php56-zip1.22.4php archiversPHP zip functions
php56-zstd0.11.0php develZstandard compression
php70-amqp1.11.0php netAMQP interface for PHP
php70-apache2handler7.0.33lang wwwphp70 Apache 2 Handler SAPI
php70-APCu5.1.24php develAPC User Cache
php70-calendar7.0.33phpa PHP extension for converting between different calendar formats
php70-cgi7.0.33lang wwwphp70 CGI SAPI
php70-curl7.0.33php net wwwa PHP interface to the curl library, which lets you download files from servers with a variety of protocols
php70-dba7.0.33php databasesa PHP interface for accessing DBM databases such as BerkeleyDB
php70-dbase7.1.1php databasesa PHP interface for accessing dBase databases
php70-enchant7.0.33php textproc devela PHP interface to enchant
php70-event3.1.4php develefficiently schedule I/O, time and signal based events
php70-excel1.0.2php textprocPHP interface to LibXL for reading and writing Microsoft Excel spreadsheets
php70-exif7.0.33php graphicsa PHP interface to the EXIF image metadata functions
php70-fpm7.0.33lang wwwphp70 FPM SAPI
php70-ftp7.0.33php neta PHP extension for accessing file servers using the File Transfer Protocol
php70-gd7.0.33php graphicsa PHP interface to the gd library
php70-gearman2.1.2php net develLibrary to provide API for communicating with gearmand, using libgearman.
php70-geoip1.1.1php develMap IP address to geographic places
php70-gettext7.0.33php devela PHP interface to the gettext natural language support functions
php70-gmagick2.0.6RC1php develProvides a wrapper to the GraphicsMagick library
php70-gmp7.0.33php devel matha PHP interface to GMP, the GNU multiprocessing library through which you can work with arbitrary-length integers
php70-iconv7.0.33php textproca PHP interface to the libiconv character encoding conversion functions
php70-igbinary3.2.16php net develPHP serializer.
php70-imagick3.7.0php graphicsPHP extension to create and modify images with ImageMagick
php70-imap7.0.33php maila PHP interface to the IMAP protocol
php70-intl7.0.33php develinternationalization extension for PHP
php70-ipc7.0.33phpinterprocess communication extensions for PHP
php70-jsmin3.0.0php develPHP API for minifying and uglifying JavaScript
php70-ldap7.0.33php databasesa PHP interface to LDAP
php70-lzf1.6.8php develHandles LZF compression / decompression.
php70-mailparse3.1.3php mail develEmail message manipulation
php70-mbstring7.0.33php textproca PHP extension for manipulating strings in multibyte encodings
php70-mcrypt7.0.33php securitya PHP interface to the mcrypt library, which offers a wide variety of algorithms
php70-memcache4.0.5.2php net develPHP bindings for memcache
php70-memcached3.2.0php net develPHP bindings for memcache
php70-meminfo1.1.1phpextension to examine PHP memory contents
php70-mongodb1.9.2php databases develMongoDB Database Driver
php70-mysql7.0.33php databasesa PHP interface to MySQL databases, including the mysqli and pdo_mysql extensions
php70-oauth2.0.7php develoauth consumer extension
php70-odbc7.0.33php databasesa PHP interface for accessing databases via Open DataBase Connectivity (ODBC)
php70-opcache7.0.33phpOPcache improves PHP performance by storing precompiled script bytecode in shared memory, thereby removing the need for PHP to load and parse scripts on each request.
php70-openssl7.0.33php devel securitya PHP interface to OpenSSL signature-generation and -verification and data-encryption and -decryption functions
php70-oracle7.0.33php databasesa PHP interface to Oracle, including the oci8 and pdo_oci extensions
php70-pcntl7.0.33php sysutilsa PHP interface to Unix-style process creation, program execution, signal handling and process termination functions
php70-pdflib4.1.4php print textprocPHP bindings for pdflib
php70-phalcon3.4.4phpfull stack PHP framework written as an extension
php70-phalcon33.4.5phpfull stack PHP framework written as an extension
php70-posix7.0.33php sysutilsa PHP interface to additional POSIX functions
php70-postgresql7.0.33php databasesa PHP interface to PostgreSQL, including the pgsql and pdo_pgsql extensions
php70-propro2.1.0phpa reusable property proxy API
php70-pspell7.0.33php textproca PHP interface to the aspell library, which lets you check spelling and offer spelling suggestions
php70-psr1.1.0phpinterfaces to PHP Standards Recommendations
php70-raphf2.0.1phpa reusable persistent handle and resource factory API
php70-rar4.2.0php develA PECL extension to create and read rar files.
php70-redis5.3.7php databasesan API for communicating with a Redis database from PHP
php70-rrd2.0.3php net develPHP rrdtool extension
php70-scrypt2.0.1php securitya PHP wrapper for scrypt
php70-snmp7.0.33php sysutilsa PHP interface to the Simple Network Management Protocol (SNMP)
php70-soap7.0.33php neta PHP extension for writing SOAP clients and servers
php70-sockets7.0.33php neta PHP interface to BSD socket communication functions
php70-solr2.6.0php devela PHP interface to Apache Solr
php70-sqlite7.0.33php databasesa PHP interface to SQLite, including the sqlite3 and pdo_sqlite extensions
php70-sqlsrv5.3.0php databasesMicrosoft sqlsrv drivers for PHP
php70-ssh21.4.1php netPHP bindings for libssh2
php70-stomp2.0.3php develPECL extension of stomp client
php70-svm0.2.3php mathPHP bindings for libsvm, a support vector machine implementation
php70-swoole4.3.6php net develan event-driven asynchronous & concurrent & coroutine networking engine with high performance for PHP
php70-taint2.1.0phpdetects XSS and SQL-injection vulnerabilities
php70-tideways_xhprof5.0.4develA PHP 7 rewrite of the original XHProf (Hierarchical Profiler) for PHP
php70-tidy7.0.33php wwwa PHP interface to tidy, the HTML cleaning and repair utility
php70-timezonedb2024.2php develA PECL Timezone Database.
php70-uploadprogress1.1.4php www develAn extension to track progress of a file upload.
php70-uuid1.2.0php net wwwA wrapper around libuuid from the ext2utils project.
php70-vld0.18.0php develDump the internal representation of PHP scripts
php70-wddx7.0.33php textproca PHP interface to Web Distributed Data Exchange
php70-xdebug2.7.2php net develphp debugging extension
php70-xhprof2.3.10php develA Hierarchical Profiler for PHP
php70-xmlrpc7.0.33php textproca PHP extension for writing XML-RPC clients and servers
php70-xsl7.0.33php textproca PHP interface to libxslt, which implements the XSL standard and lets you perform XSL transformations
php70-yaf3.3.6php net devela fast php framework written in c, built in php-ext
php70-yaml2.0.4php devela PHP interface to the YAML parsing library
php70-yaz1.2.4php net databases develPHP/PECL extension for the Z39.50 protocol
php70-zip1.22.4php archiversPHP zip functions
php70-zstd0.13.3php develZstandard compression
php71-amqp1.11.0php netAMQP interface for PHP
php71-apache2handler7.1.33lang wwwphp71 Apache 2 Handler SAPI
php71-APCu5.1.24php develAPC User Cache
php71-calendar7.1.33phpa PHP extension for converting between different calendar formats
php71-cgi7.1.33lang wwwphp71 CGI SAPI
php71-curl7.1.33php net wwwa PHP interface to the curl library, which lets you download files from servers with a variety of protocols
php71-dba7.1.33php databasesa PHP interface for accessing DBM databases such as BerkeleyDB
php71-dbase7.1.1php databasesa PHP interface for accessing dBase databases
php71-enchant7.1.33php textproc devela PHP interface to enchant
php71-event3.1.4php develefficiently schedule I/O, time and signal based events
php71-excel1.0.2php textprocPHP interface to LibXL for reading and writing Microsoft Excel spreadsheets
php71-exif7.1.33php graphicsa PHP interface to the EXIF image metadata functions
php71-fpm7.1.33lang wwwphp71 FPM SAPI
php71-ftp7.1.33php neta PHP extension for accessing file servers using the File Transfer Protocol
php71-gd7.1.33php graphicsa PHP interface to the gd library
php71-gearman2.1.2php net develLibrary to provide API for communicating with gearmand, using libgearman.
php71-geoip1.1.1php develMap IP address to geographic places
php71-gettext7.1.33php devela PHP interface to the gettext natural language support functions
php71-gmagick2.0.6RC1php develProvides a wrapper to the GraphicsMagick library
php71-gmp7.1.33php devel matha PHP interface to GMP, the GNU multiprocessing library through which you can work with arbitrary-length integers
php71-iconv7.1.33php textproca PHP interface to the libiconv character encoding conversion functions
php71-igbinary3.2.16php net develPHP serializer.
php71-imagick3.7.0php graphicsPHP extension to create and modify images with ImageMagick
php71-imap7.1.33php maila PHP interface to the IMAP protocol
php71-intl7.1.33php develinternationalization extension for PHP
php71-ipc7.1.33phpinterprocess communication extensions for PHP
php71-jsmin3.0.0php develPHP API for minifying and uglifying JavaScript
php71-ldap7.1.33php databasesa PHP interface to LDAP
php71-lzf1.6.8php develHandles LZF compression / decompression.
php71-mailparse3.1.3php mail develEmail message manipulation
php71-mbstring7.1.33php textproca PHP extension for manipulating strings in multibyte encodings
php71-mcrypt7.1.33php securitya PHP interface to the mcrypt library, which offers a wide variety of algorithms
php71-memcache4.0.5.2php net develPHP bindings for memcache
php71-memcached3.2.0php net develPHP bindings for memcache
php71-meminfo1.1.1phpextension to examine PHP memory contents
php71-mongodb1.11.1php databases develMongoDB Database Driver
php71-mysql7.1.33php databasesa PHP interface to MySQL databases, including the mysqli and pdo_mysql extensions
php71-mysql_xdevapi8.0.30php databasesMySQL X DevAPI for PHP
php71-oauth2.0.7php develoauth consumer extension
php71-odbc7.1.33php databasesa PHP interface for accessing databases via Open DataBase Connectivity (ODBC)
php71-opcache7.1.33phpOPcache improves PHP performance by storing precompiled script bytecode in shared memory, thereby removing the need for PHP to load and parse scripts on each request.
php71-openssl7.1.33php devel securitya PHP interface to OpenSSL signature-generation and -verification and data-encryption and -decryption functions
php71-oracle7.1.33php databasesa PHP interface to Oracle, including the oci8 and pdo_oci extensions
php71-pcntl7.1.33php sysutilsa PHP interface to Unix-style process creation, program execution, signal handling and process termination functions
php71-pcov1.0.11php develA self contained php-code-coverage compatible driver for PHP.
php71-pdflib4.1.4php print textprocPHP bindings for pdflib
php71-phalcon3.4.4phpfull stack PHP framework written as an extension
php71-phalcon33.4.5phpfull stack PHP framework written as an extension
php71-posix7.1.33php sysutilsa PHP interface to additional POSIX functions
php71-postgresql7.1.33php databasesa PHP interface to PostgreSQL, including the pgsql and pdo_pgsql extensions
php71-propro2.1.0phpa reusable property proxy API
php71-pspell7.1.33php textproca PHP interface to the aspell library, which lets you check spelling and offer spelling suggestions
php71-psr1.1.0phpinterfaces to PHP Standards Recommendations
php71-raphf2.0.1phpa reusable persistent handle and resource factory API
php71-rar4.2.0php develA PECL extension to create and read rar files.
php71-redis5.3.7php databasesan API for communicating with a Redis database from PHP
php71-rrd2.0.3php net develPHP rrdtool extension
php71-scrypt2.0.1php securitya PHP wrapper for scrypt
php71-snmp7.1.33php sysutilsa PHP interface to the Simple Network Management Protocol (SNMP)
php71-soap7.1.33php neta PHP extension for writing SOAP clients and servers
php71-sockets7.1.33php neta PHP interface to BSD socket communication functions
php71-solr2.6.0php devela PHP interface to Apache Solr
php71-sqlite7.1.33php databasesa PHP interface to SQLite, including the sqlite3 and pdo_sqlite extensions
php71-sqlsrv5.6.1php databasesMicrosoft sqlsrv drivers for PHP
php71-ssh21.4.1php netPHP bindings for libssh2
php71-stomp2.0.3php develPECL extension of stomp client
php71-svm0.2.3php mathPHP bindings for libsvm, a support vector machine implementation
php71-swoole4.5.11php net develan event-driven asynchronous & concurrent & coroutine networking engine with high performance for PHP
php71-taint2.1.0phpdetects XSS and SQL-injection vulnerabilities
php71-tideways_xhprof5.0.4develA PHP 7 rewrite of the original XHProf (Hierarchical Profiler) for PHP
php71-tidy7.1.33php wwwa PHP interface to tidy, the HTML cleaning and repair utility
php71-timezonedb2024.2php develA PECL Timezone Database.
php71-uploadprogress1.1.4php www develAn extension to track progress of a file upload.
php71-uuid1.2.0php net wwwA wrapper around libuuid from the ext2utils project.
php71-vld0.18.0php develDump the internal representation of PHP scripts
php71-wddx7.1.33php textproca PHP interface to Web Distributed Data Exchange
php71-xdebug2.9.8php net develphp debugging extension
php71-xhprof2.3.10php develA Hierarchical Profiler for PHP
php71-xmlrpc7.1.33php textproca PHP extension for writing XML-RPC clients and servers
php71-xsl7.1.33php textproca PHP interface to libxslt, which implements the XSL standard and lets you perform XSL transformations
php71-yaf3.3.6php net devela fast php framework written in c, built in php-ext
php71-yaml2.2.3php devela PHP interface to the YAML parsing library
php71-yaz1.2.4php net databases develPHP/PECL extension for the Z39.50 protocol
php71-zip1.22.4php archiversPHP zip functions
php71-zstd0.13.3php develZstandard compression
php72-amqp1.11.0php netAMQP interface for PHP
php72-apache2handler7.2.34lang wwwphp72 Apache 2 Handler SAPI
php72-APCu5.1.24php develAPC User Cache
php72-calendar7.2.34phpa PHP extension for converting between different calendar formats
php72-cgi7.2.34lang wwwphp72 CGI SAPI
php72-curl7.2.34php net wwwa PHP interface to the curl library, which lets you download files from servers with a variety of protocols
php72-dba7.2.34php databasesa PHP interface for accessing DBM databases such as BerkeleyDB
php72-dbase7.1.1php databasesa PHP interface for accessing dBase databases
php72-enchant7.2.34php textproc devela PHP interface to enchant
php72-event3.1.4php develefficiently schedule I/O, time and signal based events
php72-excel1.0.2php textprocPHP interface to LibXL for reading and writing Microsoft Excel spreadsheets
php72-exif7.2.34php graphicsa PHP interface to the EXIF image metadata functions
php72-fpm7.2.34lang wwwphp72 FPM SAPI
php72-ftp7.2.34php neta PHP extension for accessing file servers using the File Transfer Protocol
php72-gd7.2.34php graphicsa PHP interface to the gd library
php72-gearman2.1.2php net develLibrary to provide API for communicating with gearmand, using libgearman.
php72-geoip1.1.1php develMap IP address to geographic places
php72-gettext7.2.34php devela PHP interface to the gettext natural language support functions
php72-gmagick2.0.6RC1php develProvides a wrapper to the GraphicsMagick library
php72-gmp7.2.34php devel matha PHP interface to GMP, the GNU multiprocessing library through which you can work with arbitrary-length integers
php72-iconv7.2.34php textproca PHP interface to the libiconv character encoding conversion functions
php72-igbinary3.2.16php net develPHP serializer.
php72-imagick3.7.0php graphicsPHP extension to create and modify images with ImageMagick
php72-imap7.2.34php maila PHP interface to the IMAP protocol
php72-intl7.2.34php develinternationalization extension for PHP
php72-ipc7.2.34phpinterprocess communication extensions for PHP
php72-jsmin3.0.0php develPHP API for minifying and uglifying JavaScript
php72-ldap7.2.34php databasesa PHP interface to LDAP
php72-lzf1.7.0php develHandles LZF compression / decompression.
php72-mailparse3.1.3php mail develEmail message manipulation
php72-maxminddb1.11.1php develPHP API for reading MaxMind DB files
php72-mbstring7.2.34php textproca PHP extension for manipulating strings in multibyte encodings
php72-mcrypt1.0.7php securitya PHP interface to the mcrypt library, which offers a wide variety of algorithms
php72-memcache4.0.5.2php net develPHP bindings for memcache
php72-memcached3.2.0php net develPHP bindings for memcache
php72-meminfo1.1.1phpextension to examine PHP memory contents
php72-mongodb1.16.2php databases develMongoDB Database Driver
php72-mysql7.2.34php databasesa PHP interface to MySQL databases, including the mysqli and pdo_mysql extensions
php72-mysql_xdevapi8.0.30php databasesMySQL X DevAPI for PHP
php72-oauth2.0.7php develoauth consumer extension
php72-odbc7.2.34php databasesa PHP interface for accessing databases via Open DataBase Connectivity (ODBC)
php72-opcache7.2.34phpOPcache improves PHP performance by storing precompiled script bytecode in shared memory, thereby removing the need for PHP to load and parse scripts on each request.
php72-openssl7.2.34php devel securitya PHP interface to OpenSSL signature-generation and -verification and data-encryption and -decryption functions
php72-openswoole4.10.0php net develan event-driven asynchronous & concurrent & coroutine networking engine with high performance for PHP
php72-oracle7.2.34php databasesa PHP interface to Oracle, including the oci8 and pdo_oci extensions
php72-pcntl7.2.34php sysutilsa PHP interface to Unix-style process creation, program execution, signal handling and process termination functions
php72-pcov1.0.11php develA self contained php-code-coverage compatible driver for PHP.
php72-pdflib4.1.4php print textprocPHP bindings for pdflib
php72-phalcon3.4.4phpfull stack PHP framework written as an extension
php72-phalcon33.4.5phpfull stack PHP framework written as an extension
php72-phalcon44.1.1phpfull stack PHP framework written as an extension
php72-posix7.2.34php sysutilsa PHP interface to additional POSIX functions
php72-postgresql7.2.34php databasesa PHP interface to PostgreSQL, including the pgsql and pdo_pgsql extensions
php72-propro2.1.0phpa reusable property proxy API
php72-pspell7.2.34php textproca PHP interface to the aspell library, which lets you check spelling and offer spelling suggestions
php72-psr1.1.0phpinterfaces to PHP Standards Recommendations
php72-raphf2.0.1phpa reusable persistent handle and resource factory API
php72-rar4.2.0php develA PECL extension to create and read rar files.
php72-redis6.0.2php databasesan API for communicating with a Redis database from PHP
php72-rrd2.0.3php net develPHP rrdtool extension
php72-scrypt2.0.1php securitya PHP wrapper for scrypt
php72-snmp7.2.34php sysutilsa PHP interface to the Simple Network Management Protocol (SNMP)
php72-soap7.2.34php neta PHP extension for writing SOAP clients and servers
php72-sockets7.2.34php neta PHP interface to BSD socket communication functions
php72-sodium7.2.34php securitya PHP interface to libsodium, a modern and easy-to-use crypto library
php72-solr2.6.0php devela PHP interface to Apache Solr
php72-sqlite7.2.34php databasesa PHP interface to SQLite, including the sqlite3 and pdo_sqlite extensions
php72-sqlsrv5.8.1php databasesMicrosoft sqlsrv drivers for PHP
php72-ssh21.4.1php netPHP bindings for libssh2
php72-stomp2.0.3php develPECL extension of stomp client
php72-svm0.2.3php mathPHP bindings for libsvm, a support vector machine implementation
php72-swoole4.8.13php net develan event-driven asynchronous & concurrent & coroutine networking engine with high performance for PHP
php72-taint2.1.0phpdetects XSS and SQL-injection vulnerabilities
php72-tideways_xhprof5.0.4develA PHP 7 rewrite of the original XHProf (Hierarchical Profiler) for PHP
php72-tidy7.2.34php wwwa PHP interface to tidy, the HTML cleaning and repair utility
php72-timezonedb2024.2php develA PECL Timezone Database.
php72-uploadprogress2.0.2php www develAn extension to track progress of a file upload.
php72-uuid1.2.0php net wwwA wrapper around libuuid from the ext2utils project.
php72-vld0.18.0php develDump the internal representation of PHP scripts
php72-wddx7.2.34php textproca PHP interface to Web Distributed Data Exchange
php72-xdebug3.1.6php net develphp debugging extension
php72-xhprof2.3.10php develA Hierarchical Profiler for PHP
php72-xmlrpc7.2.34php textproca PHP extension for writing XML-RPC clients and servers
php72-xsl7.2.34php textproca PHP interface to libxslt, which implements the XSL standard and lets you perform XSL transformations
php72-yaf3.3.6php net devela fast php framework written in c, built in php-ext
php72-yaml2.2.3php devela PHP interface to the YAML parsing library
php72-yaz1.2.4php net databases develPHP/PECL extension for the Z39.50 protocol
php72-zip1.22.4php archiversPHP zip functions
php72-zstd0.13.3php develZstandard compression
php73-amqp1.11.0php netAMQP interface for PHP
php73-apache2handler7.3.33lang wwwphp73 Apache 2 Handler SAPI
php73-APCu5.1.24php develAPC User Cache
php73-calendar7.3.33phpa PHP extension for converting between different calendar formats
php73-cgi7.3.33lang wwwphp73 CGI SAPI
php73-curl7.3.33php net wwwa PHP interface to the curl library, which lets you download files from servers with a variety of protocols
php73-dba7.3.33php databasesa PHP interface for accessing DBM databases such as BerkeleyDB
php73-dbase7.1.1php databasesa PHP interface for accessing dBase databases
php73-enchant7.3.33php textproc devela PHP interface to enchant
php73-event3.1.4php develefficiently schedule I/O, time and signal based events
php73-excel1.0.2php textprocPHP interface to LibXL for reading and writing Microsoft Excel spreadsheets
php73-exif7.3.33php graphicsa PHP interface to the EXIF image metadata functions
php73-fpm7.3.33lang wwwphp73 FPM SAPI
php73-ftp7.3.33php neta PHP extension for accessing file servers using the File Transfer Protocol
php73-gd7.3.33php graphicsa PHP interface to the gd library
php73-gearman2.1.2php net develLibrary to provide API for communicating with gearmand, using libgearman.
php73-geoip1.1.1php develMap IP address to geographic places
php73-gettext7.3.33php devela PHP interface to the gettext natural language support functions
php73-gmagick2.0.6RC1php develProvides a wrapper to the GraphicsMagick library
php73-gmp7.3.33php devel matha PHP interface to GMP, the GNU multiprocessing library through which you can work with arbitrary-length integers
php73-iconv7.3.33php textproca PHP interface to the libiconv character encoding conversion functions
php73-igbinary3.2.16php net develPHP serializer.
php73-imagick3.7.0php graphicsPHP extension to create and modify images with ImageMagick
php73-imap7.3.33php maila PHP interface to the IMAP protocol
php73-intl7.3.33php develinternationalization extension for PHP
php73-ipc7.3.33phpinterprocess communication extensions for PHP
php73-jsmin3.0.0php develPHP API for minifying and uglifying JavaScript
php73-ldap7.3.33php databasesa PHP interface to LDAP
php73-lzf1.7.0php develHandles LZF compression / decompression.
php73-mailparse3.1.6php mail develEmail message manipulation
php73-maxminddb1.11.1php develPHP API for reading MaxMind DB files
php73-mbstring7.3.33php textproca PHP extension for manipulating strings in multibyte encodings
php73-mcrypt1.0.7php securitya PHP interface to the mcrypt library, which offers a wide variety of algorithms
php73-memcache4.0.5.2php net develPHP bindings for memcache
php73-memcached3.2.0php net develPHP bindings for memcache
php73-meminfo1.1.1phpextension to examine PHP memory contents
php73-mongodb1.16.2php databases develMongoDB Database Driver
php73-mysql7.3.33php databasesa PHP interface to MySQL databases, including the mysqli and pdo_mysql extensions
php73-mysql_xdevapi8.0.30php databasesMySQL X DevAPI for PHP
php73-oauth2.0.7php develoauth consumer extension
php73-odbc7.3.33php databasesa PHP interface for accessing databases via Open DataBase Connectivity (ODBC)
php73-opcache7.3.33phpOPcache improves PHP performance by storing precompiled script bytecode in shared memory, thereby removing the need for PHP to load and parse scripts on each request.
php73-openssl7.3.33php devel securitya PHP interface to OpenSSL signature-generation and -verification and data-encryption and -decryption functions
php73-openswoole4.10.0php net develan event-driven asynchronous & concurrent & coroutine networking engine with high performance for PHP
php73-oracle7.3.33php databasesa PHP interface to Oracle, including the oci8 and pdo_oci extensions
php73-pcntl7.3.33php sysutilsa PHP interface to Unix-style process creation, program execution, signal handling and process termination functions
php73-pcov1.0.11php develA self contained php-code-coverage compatible driver for PHP.
php73-pdflib4.1.4php print textprocPHP bindings for pdflib
php73-phalcon3.4.4phpfull stack PHP framework written as an extension
php73-phalcon33.4.5phpfull stack PHP framework written as an extension
php73-phalcon44.1.2phpfull stack PHP framework written as an extension
php73-posix7.3.33php sysutilsa PHP interface to additional POSIX functions
php73-postgresql7.3.33php databasesa PHP interface to PostgreSQL, including the pgsql and pdo_pgsql extensions
php73-propro2.1.0phpa reusable property proxy API
php73-pspell7.3.33php textproca PHP interface to the aspell library, which lets you check spelling and offer spelling suggestions
php73-psr1.2.0phpinterfaces to PHP Standards Recommendations
php73-raphf2.0.1phpa reusable persistent handle and resource factory API
php73-rar4.2.0php develA PECL extension to create and read rar files.
php73-redis6.0.2php databasesan API for communicating with a Redis database from PHP
php73-rrd2.0.3php net develPHP rrdtool extension
php73-scrypt2.0.1php securitya PHP wrapper for scrypt
php73-snmp7.3.33php sysutilsa PHP interface to the Simple Network Management Protocol (SNMP)
php73-soap7.3.33php neta PHP extension for writing SOAP clients and servers
php73-sockets7.3.33php neta PHP interface to BSD socket communication functions
php73-sodium7.3.33php securitya PHP interface to libsodium, a modern and easy-to-use crypto library
php73-solr2.6.0php devela PHP interface to Apache Solr
php73-sqlite7.3.33php databasesa PHP interface to SQLite, including the sqlite3 and pdo_sqlite extensions
php73-sqlsrv5.9.0php databasesMicrosoft sqlsrv drivers for PHP
php73-ssh21.4.1php netPHP bindings for libssh2
php73-stomp2.0.3php develPECL extension of stomp client
php73-svm0.2.3php mathPHP bindings for libsvm, a support vector machine implementation
php73-swoole4.8.13php net develan event-driven asynchronous & concurrent & coroutine networking engine with high performance for PHP
php73-taint2.1.0phpdetects XSS and SQL-injection vulnerabilities
php73-tideways_xhprof5.0.4develA PHP 7 rewrite of the original XHProf (Hierarchical Profiler) for PHP
php73-tidy7.3.33php wwwa PHP interface to tidy, the HTML cleaning and repair utility
php73-timezonedb2024.2php develA PECL Timezone Database.
php73-uploadprogress2.0.2php www develAn extension to track progress of a file upload.
php73-uuid1.2.0php net wwwA wrapper around libuuid from the ext2utils project.
php73-vld0.18.0php develDump the internal representation of PHP scripts
php73-wddx7.3.33php textproca PHP interface to Web Distributed Data Exchange
php73-xdebug3.1.6php net develphp debugging extension
php73-xhprof2.3.10php develA Hierarchical Profiler for PHP
php73-xmlrpc7.3.33php textproca PHP extension for writing XML-RPC clients and servers
php73-xsl7.3.33php textproca PHP interface to libxslt, which implements the XSL standard and lets you perform XSL transformations
php73-yaf3.3.6php net devela fast php framework written in c, built in php-ext
php73-yaml2.2.3php devela PHP interface to the YAML parsing library
php73-yaz1.2.4php net databases develPHP/PECL extension for the Z39.50 protocol
php73-zip1.22.4php archiversPHP zip functions
php73-zstd0.13.3php develZstandard compression
php74-amqp2.1.2php netAMQP interface for PHP
php74-apache2handler7.4.33lang wwwphp74 Apache 2 Handler SAPI
php74-APCu5.1.24php develAPC User Cache
php74-calendar7.4.33phpa PHP extension for converting between different calendar formats
php74-cgi7.4.33lang wwwphp74 CGI SAPI
php74-curl7.4.33php net wwwa PHP interface to the curl library, which lets you download files from servers with a variety of protocols
php74-dba7.4.33php databasesa PHP interface for accessing DBM databases such as BerkeleyDB
php74-dbase7.1.1php databasesa PHP interface for accessing dBase databases
php74-enchant7.4.33php textproc devela PHP interface to enchant
php74-event3.1.4php develefficiently schedule I/O, time and signal based events
php74-excel1.0.2php textprocPHP interface to LibXL for reading and writing Microsoft Excel spreadsheets
php74-exif7.4.33php graphicsa PHP interface to the EXIF image metadata functions
php74-ffi7.4.33php devela PHP interface to allow loading of shared libraries
php74-fpm7.4.33lang wwwphp74 FPM SAPI
php74-ftp7.4.33php neta PHP extension for accessing file servers using the File Transfer Protocol
php74-gd7.4.33php graphicsa PHP interface to the gd library
php74-gearman2.1.2php net develLibrary to provide API for communicating with gearmand, using libgearman.
php74-geoip1.1.1php develMap IP address to geographic places
php74-gettext7.4.33php devela PHP interface to the gettext natural language support functions
php74-gmagick2.0.6RC1php develProvides a wrapper to the GraphicsMagick library
php74-gmp7.4.33php devel matha PHP interface to GMP, the GNU multiprocessing library through which you can work with arbitrary-length integers
php74-iconv7.4.33php textproca PHP interface to the libiconv character encoding conversion functions
php74-igbinary3.2.16php net develPHP serializer.
php74-imagick3.7.0php graphicsPHP extension to create and modify images with ImageMagick
php74-imap7.4.33php maila PHP interface to the IMAP protocol
php74-intl7.4.33php develinternationalization extension for PHP
php74-ipc7.4.33phpinterprocess communication extensions for PHP
php74-jsmin3.0.0php develPHP API for minifying and uglifying JavaScript
php74-ldap7.4.33php databasesa PHP interface to LDAP
php74-lzf1.7.0php develHandles LZF compression / decompression.
php74-mailparse3.1.6php mail develEmail message manipulation
php74-maxminddb1.11.1php develPHP API for reading MaxMind DB files
php74-mbstring7.4.33php textproca PHP extension for manipulating strings in multibyte encodings
php74-mcrypt1.0.7php securitya PHP interface to the mcrypt library, which offers a wide variety of algorithms
php74-memcache4.0.5.2php net develPHP bindings for memcache
php74-memcached3.2.0php net develPHP bindings for memcache
php74-meminfo1.1.1phpextension to examine PHP memory contents
php74-mongodb1.16.2php databases develMongoDB Database Driver
php74-mysql7.4.33php databasesa PHP interface to MySQL databases, including the mysqli and pdo_mysql extensions
php74-mysql_xdevapi8.0.30php databasesMySQL X DevAPI for PHP
php74-oauth2.0.7php develoauth consumer extension
php74-odbc7.4.33php databasesa PHP interface for accessing databases via Open DataBase Connectivity (ODBC)
php74-opcache7.4.33phpOPcache improves PHP performance by storing precompiled script bytecode in shared memory, thereby removing the need for PHP to load and parse scripts on each request.
php74-openssl7.4.33php devel securitya PHP interface to OpenSSL signature-generation and -verification and data-encryption and -decryption functions
php74-openswoole22.0.0php net develan event-driven asynchronous & concurrent & coroutine networking engine with high performance for PHP
php74-oracle7.4.33php databasesa PHP interface to Oracle, including the oci8 and pdo_oci extensions
php74-pcntl7.4.33php sysutilsa PHP interface to Unix-style process creation, program execution, signal handling and process termination functions
php74-pcov1.0.11php develA self contained php-code-coverage compatible driver for PHP.
php74-pdflib4.1.4php print textprocPHP bindings for pdflib
php74-phalcon44.1.2phpfull stack PHP framework written as an extension
php74-posix7.4.33php sysutilsa PHP interface to additional POSIX functions
php74-postgresql7.4.33php databasesa PHP interface to PostgreSQL, including the pgsql and pdo_pgsql extensions
php74-propro2.1.0phpa reusable property proxy API
php74-pspell7.4.33php textproca PHP interface to the aspell library, which lets you check spelling and offer spelling suggestions
php74-psr1.2.0phpinterfaces to PHP Standards Recommendations
php74-raphf2.0.1phpa reusable persistent handle and resource factory API
php74-rar4.2.0php develA PECL extension to create and read rar files.
php74-redis6.0.2php databasesan API for communicating with a Redis database from PHP
php74-rrd2.0.3php net develPHP rrdtool extension
php74-scrypt2.0.1php securitya PHP wrapper for scrypt
php74-snmp7.4.33php sysutilsa PHP interface to the Simple Network Management Protocol (SNMP)
php74-soap7.4.33php neta PHP extension for writing SOAP clients and servers
php74-sockets7.4.33php neta PHP interface to BSD socket communication functions
php74-sodium7.4.33php securitya PHP interface to libsodium, a modern and easy-to-use crypto library
php74-solr2.7.0php devela PHP interface to Apache Solr
php74-sqlite7.4.33php databasesa PHP interface to SQLite, including the sqlite3 and pdo_sqlite extensions
php74-sqlsrv5.10.1php databasesMicrosoft sqlsrv drivers for PHP
php74-ssh21.4.1php netPHP bindings for libssh2
php74-stomp2.0.3php develPECL extension of stomp client
php74-svm0.2.3php mathPHP bindings for libsvm, a support vector machine implementation
php74-swoole4.8.13php net develan event-driven asynchronous & concurrent & coroutine networking engine with high performance for PHP
php74-taint2.1.0phpdetects XSS and SQL-injection vulnerabilities
php74-tideways_xhprof5.0.4develA PHP 7 rewrite of the original XHProf (Hierarchical Profiler) for PHP
php74-tidy7.4.33php wwwa PHP interface to tidy, the HTML cleaning and repair utility
php74-timezonedb2024.2php develA PECL Timezone Database.
php74-uploadprogress2.0.2php www develAn extension to track progress of a file upload.
php74-uuid1.2.0php net wwwA wrapper around libuuid from the ext2utils project.
php74-vld0.18.0php develDump the internal representation of PHP scripts
php74-xdebug3.1.6php net develphp debugging extension
php74-xhprof2.3.10php develA Hierarchical Profiler for PHP
php74-xmlrpc7.4.33php textproca PHP extension for writing XML-RPC clients and servers
php74-xsl7.4.33php textproca PHP interface to libxslt, which implements the XSL standard and lets you perform XSL transformations
php74-yaf3.3.6php net devela fast php framework written in c, built in php-ext
php74-yaml2.2.3php devela PHP interface to the YAML parsing library
php74-yaz1.2.4php net databases develPHP/PECL extension for the Z39.50 protocol
php74-zip1.22.4php archiversPHP zip functions
php74-zstd0.13.3php develZstandard compression
php80-amqp2.1.2php netAMQP interface for PHP
php80-apache2handler8.0.30lang wwwphp80 Apache 2 Handler SAPI
php80-APCu5.1.24php develAPC User Cache
php80-calendar8.0.30phpa PHP extension for converting between different calendar formats
php80-cgi8.0.30lang wwwphp80 CGI SAPI
php80-curl8.0.30php net wwwa PHP interface to the curl library, which lets you download files from servers with a variety of protocols
php80-dba8.0.30php databasesa PHP interface for accessing DBM databases such as BerkeleyDB
php80-dbase7.1.1php databasesa PHP interface for accessing dBase databases
php80-enchant8.0.30php textproc devela PHP interface to enchant
php80-event3.1.4php develefficiently schedule I/O, time and signal based events
php80-exif8.0.30php graphicsa PHP interface to the EXIF image metadata functions
php80-ffi8.0.30php devela PHP interface to allow loading of shared libraries
php80-fpm8.0.30lang wwwphp80 FPM SAPI
php80-ftp8.0.30php neta PHP extension for accessing file servers using the File Transfer Protocol
php80-gd8.0.30php graphicsa PHP interface to the gd library
php80-gearman2.1.2php net develLibrary to provide API for communicating with gearmand, using libgearman.
php80-geoip1.1.1php develMap IP address to geographic places
php80-gettext8.0.30php devela PHP interface to the gettext natural language support functions
php80-gmagick2.0.6RC1php develProvides a wrapper to the GraphicsMagick library
php80-gmp8.0.30php devel matha PHP interface to GMP, the GNU multiprocessing library through which you can work with arbitrary-length integers
php80-iconv8.0.30php textproca PHP interface to the libiconv character encoding conversion functions
php80-igbinary3.2.16php net develPHP serializer.
php80-imagick3.7.0php graphicsPHP extension to create and modify images with ImageMagick
php80-imap8.0.30php maila PHP interface to the IMAP protocol
php80-intl8.0.30php develinternationalization extension for PHP
php80-ipc8.0.30phpinterprocess communication extensions for PHP
php80-jsmin3.0.0php develPHP API for minifying and uglifying JavaScript
php80-ldap8.0.30php databasesa PHP interface to LDAP
php80-lzf1.7.0php develHandles LZF compression / decompression.
php80-mailparse3.1.6php mail develEmail message manipulation
php80-maxminddb1.11.1php develPHP API for reading MaxMind DB files
php80-mbstring8.0.30php textproca PHP extension for manipulating strings in multibyte encodings
php80-mcrypt1.0.7php securitya PHP interface to the mcrypt library, which offers a wide variety of algorithms
php80-memcache8.2php net develPHP bindings for memcache
php80-memcached3.2.0php net develPHP bindings for memcache
php80-meminfo1.1.1phpextension to examine PHP memory contents
php80-mongodb1.16.2php databases develMongoDB Database Driver
php80-mysql8.0.30php databasesa PHP interface to MySQL databases, including the mysqli and pdo_mysql extensions
php80-mysql_xdevapi8.0.30php databasesMySQL X DevAPI for PHP
php80-oauth2.0.7php develoauth consumer extension
php80-odbc8.0.30php databasesa PHP interface for accessing databases via Open DataBase Connectivity (ODBC)
php80-opcache8.0.30phpOPcache improves PHP performance by storing precompiled script bytecode in shared memory, thereby removing the need for PHP to load and parse scripts on each request.
php80-openssl8.0.30php devel securitya PHP interface to OpenSSL signature-generation and -verification and data-encryption and -decryption functions
php80-openswoole22.0.0php net develan event-driven asynchronous & concurrent & coroutine networking engine with high performance for PHP
php80-oracle8.0.30php databasesa PHP interface to Oracle, including the oci8 and pdo_oci extensions
php80-pcntl8.0.30php sysutilsa PHP interface to Unix-style process creation, program execution, signal handling and process termination functions
php80-pcov1.0.11php develA self contained php-code-coverage compatible driver for PHP.
php80-posix8.0.30php sysutilsa PHP interface to additional POSIX functions
php80-postgresql8.0.30php databasesa PHP interface to PostgreSQL, including the pgsql and pdo_pgsql extensions
php80-pspell8.0.30php textproca PHP interface to the aspell library, which lets you check spelling and offer spelling suggestions
php80-psr1.2.0phpinterfaces to PHP Standards Recommendations
php80-raphf2.0.1phpa reusable persistent handle and resource factory API
php80-rar4.2.0php develA PECL extension to create and read rar files.
php80-redis6.0.2php databasesan API for communicating with a Redis database from PHP
php80-rrd2.0.3php net develPHP rrdtool extension
php80-scrypt2.0.1php securitya PHP wrapper for scrypt
php80-snmp8.0.30php sysutilsa PHP interface to the Simple Network Management Protocol (SNMP)
php80-soap8.0.30php neta PHP extension for writing SOAP clients and servers
php80-sockets8.0.30php neta PHP interface to BSD socket communication functions
php80-sodium8.0.30php securitya PHP interface to libsodium, a modern and easy-to-use crypto library
php80-solr2.7.0php devela PHP interface to Apache Solr
php80-sqlite8.0.30php databasesa PHP interface to SQLite, including the sqlite3 and pdo_sqlite extensions
php80-sqlsrv5.11.1php databasesMicrosoft sqlsrv drivers for PHP
php80-ssh21.4.1php netPHP bindings for libssh2
php80-stomp2.0.3php develPECL extension of stomp client
php80-svm0.2.3php mathPHP bindings for libsvm, a support vector machine implementation
php80-swoole5.0.3php net develan event-driven asynchronous & concurrent & coroutine networking engine with high performance for PHP
php80-tideways_xhprof5.0.4develA PHP 7 rewrite of the original XHProf (Hierarchical Profiler) for PHP
php80-tidy8.0.30php wwwa PHP interface to tidy, the HTML cleaning and repair utility
php80-timezonedb2024.2php develA PECL Timezone Database.
php80-uploadprogress2.0.2php www develAn extension to track progress of a file upload.
php80-uuid1.2.0php net wwwA wrapper around libuuid from the ext2utils project.
php80-vld0.18.0php develDump the internal representation of PHP scripts
php80-xapian1.4.26develXapian bindings for PHP 8.0
php80-xdebug3.3.2php net develphp debugging extension
php80-xhprof2.3.10php develA Hierarchical Profiler for PHP
php80-xmlrpc1.0.0RC3php textproca PHP extension for writing XML-RPC clients and servers
php80-xsl8.0.30php textproca PHP interface to libxslt, which implements the XSL standard and lets you perform XSL transformations
php80-yaf3.3.6php net devela fast php framework written in c, built in php-ext
php80-yaml2.2.3php devela PHP interface to the YAML parsing library
php80-yaz1.2.4php net databases develPHP/PECL extension for the Z39.50 protocol
php80-zip1.22.4php archiversPHP zip functions
php80-zstd0.13.3php develZstandard compression
php81-amqp2.1.2php netAMQP interface for PHP
php81-apache2handler8.1.30lang wwwphp81 Apache 2 Handler SAPI
php81-APCu5.1.24php develAPC User Cache
php81-calendar8.1.30phpa PHP extension for converting between different calendar formats
php81-cgi8.1.30lang wwwphp81 CGI SAPI
php81-curl8.1.30php net wwwa PHP interface to the curl library, which lets you download files from servers with a variety of protocols
php81-dba8.1.30php databasesa PHP interface for accessing DBM databases such as BerkeleyDB
php81-dbase7.1.1php databasesa PHP interface for accessing dBase databases
php81-enchant8.1.30php textproc devela PHP interface to enchant
php81-event3.1.4php develefficiently schedule I/O, time and signal based events
php81-exif8.1.30php graphicsa PHP interface to the EXIF image metadata functions
php81-ffi8.1.30php devela PHP interface to allow loading of shared libraries
php81-fpm8.1.30lang wwwphp81 FPM SAPI
php81-ftp8.1.30php neta PHP extension for accessing file servers using the File Transfer Protocol
php81-gd8.1.30php graphicsa PHP interface to the gd library
php81-gearman2.1.2php net develLibrary to provide API for communicating with gearmand, using libgearman.
php81-geoip1.1.1php develMap IP address to geographic places
php81-gettext8.1.30php devela PHP interface to the gettext natural language support functions
php81-gmagick2.0.6RC1php develProvides a wrapper to the GraphicsMagick library
php81-gmp8.1.30php devel matha PHP interface to GMP, the GNU multiprocessing library through which you can work with arbitrary-length integers
php81-iconv8.1.30php textproca PHP interface to the libiconv character encoding conversion functions
php81-igbinary3.2.16php net develPHP serializer.
php81-imagick3.7.0php graphicsPHP extension to create and modify images with ImageMagick
php81-imap8.1.30php maila PHP interface to the IMAP protocol
php81-intl8.1.30php develinternationalization extension for PHP
php81-ipc8.1.30phpinterprocess communication extensions for PHP
php81-jsmin3.0.0php develPHP API for minifying and uglifying JavaScript
php81-ldap8.1.30php databasesa PHP interface to LDAP
php81-lzf1.7.0php develHandles LZF compression / decompression.
php81-mailparse3.1.6php mail develEmail message manipulation
php81-maxminddb1.11.1php develPHP API for reading MaxMind DB files
php81-mbstring8.1.30php textproca PHP extension for manipulating strings in multibyte encodings
php81-mcrypt1.0.7php securitya PHP interface to the mcrypt library, which offers a wide variety of algorithms
php81-memcache8.2php net develPHP bindings for memcache
php81-memcached3.2.0php net develPHP bindings for memcache
php81-meminfo1.1.1phpextension to examine PHP memory contents
php81-mongodb1.16.2php databases develMongoDB Database Driver
php81-mysql8.1.30php databasesa PHP interface to MySQL databases, including the mysqli and pdo_mysql extensions
php81-mysql_xdevapi8.0.30php databasesMySQL X DevAPI for PHP
php81-oauth2.0.7php develoauth consumer extension
php81-odbc8.1.30php databasesa PHP interface for accessing databases via Open DataBase Connectivity (ODBC)
php81-opcache8.1.30phpOPcache improves PHP performance by storing precompiled script bytecode in shared memory, thereby removing the need for PHP to load and parse scripts on each request.
php81-openssl8.1.30php devel securitya PHP interface to OpenSSL signature-generation and -verification and data-encryption and -decryption functions
php81-openswoole22.0.0php net develan event-driven asynchronous & concurrent & coroutine networking engine with high performance for PHP
php81-oracle8.1.30php databasesa PHP interface to Oracle, including the oci8 and pdo_oci extensions
php81-pcntl8.1.30php sysutilsa PHP interface to Unix-style process creation, program execution, signal handling and process termination functions
php81-pcov1.0.11php develA self contained php-code-coverage compatible driver for PHP.
php81-posix8.1.30php sysutilsa PHP interface to additional POSIX functions
php81-postgresql8.1.30php databasesa PHP interface to PostgreSQL, including the pgsql and pdo_pgsql extensions
php81-pspell8.1.30php textproca PHP interface to the aspell library, which lets you check spelling and offer spelling suggestions
php81-psr1.2.0phpinterfaces to PHP Standards Recommendations
php81-raphf2.0.1phpa reusable persistent handle and resource factory API
php81-rar4.2.0php develA PECL extension to create and read rar files.
php81-redis6.0.2php databasesan API for communicating with a Redis database from PHP
php81-rrd2.0.3php net develPHP rrdtool extension
php81-scrypt2.0.1php securitya PHP wrapper for scrypt
php81-snmp8.1.30php sysutilsa PHP interface to the Simple Network Management Protocol (SNMP)
php81-soap8.1.30php neta PHP extension for writing SOAP clients and servers
php81-sockets8.1.30php neta PHP interface to BSD socket communication functions
php81-sodium8.1.30php securitya PHP interface to libsodium, a modern and easy-to-use crypto library
php81-solr2.7.0php devela PHP interface to Apache Solr
php81-sqlite8.1.30php databasesa PHP interface to SQLite, including the sqlite3 and pdo_sqlite extensions
php81-sqlsrv5.12.0php databasesMicrosoft sqlsrv drivers for PHP
php81-ssh21.4.1php netPHP bindings for libssh2
php81-stomp2.0.3php develPECL extension of stomp client
php81-svm0.2.3php mathPHP bindings for libsvm, a support vector machine implementation
php81-swoole5.0.3php net develan event-driven asynchronous & concurrent & coroutine networking engine with high performance for PHP
php81-tideways_xhprof5.0.4develA PHP 7 rewrite of the original XHProf (Hierarchical Profiler) for PHP
php81-tidy8.1.30php wwwa PHP interface to tidy, the HTML cleaning and repair utility
php81-timezonedb2024.2php develA PECL Timezone Database.
php81-uploadprogress2.0.2php www develAn extension to track progress of a file upload.
php81-uuid1.2.0php net wwwA wrapper around libuuid from the ext2utils project.
php81-vld0.18.0php develDump the internal representation of PHP scripts
php81-xapian1.4.26develXapian bindings for PHP 8.1
php81-xdebug3.3.2php net develphp debugging extension
php81-xhprof2.3.10php develA Hierarchical Profiler for PHP
php81-xmlrpc1.0.0RC3php textproca PHP extension for writing XML-RPC clients and servers
php81-xsl8.1.30php textproca PHP interface to libxslt, which implements the XSL standard and lets you perform XSL transformations
php81-yaf3.3.6php net devela fast php framework written in c, built in php-ext
php81-yaml2.2.3php devela PHP interface to the YAML parsing library
php81-yaz1.2.4php net databases develPHP/PECL extension for the Z39.50 protocol
php81-zip1.22.4php archiversPHP zip functions
php81-zstd0.13.3php develZstandard compression
php82-amqp2.1.2php netAMQP interface for PHP
php82-apache2handler8.2.24lang wwwphp82 Apache 2 Handler SAPI
php82-APCu5.1.24php develAPC User Cache
php82-calendar8.2.24phpa PHP extension for converting between different calendar formats
php82-cgi8.2.24lang wwwphp82 CGI SAPI
php82-curl8.2.24php net wwwa PHP interface to the curl library, which lets you download files from servers with a variety of protocols
php82-dba8.2.24php databasesa PHP interface for accessing DBM databases such as BerkeleyDB
php82-dbase7.1.1php databasesa PHP interface for accessing dBase databases
php82-enchant8.2.24php textproc devela PHP interface to enchant
php82-event3.1.4php develefficiently schedule I/O, time and signal based events
php82-exif8.2.24php graphicsa PHP interface to the EXIF image metadata functions
php82-ffi8.2.24php devela PHP interface to allow loading of shared libraries
php82-fpm8.2.24lang wwwphp82 FPM SAPI
php82-ftp8.2.24php neta PHP extension for accessing file servers using the File Transfer Protocol
php82-gd8.2.24php graphicsa PHP interface to the gd library
php82-gearman2.1.2php net develLibrary to provide API for communicating with gearmand, using libgearman.
php82-geoip1.1.1php develMap IP address to geographic places
php82-gettext8.2.24php devela PHP interface to the gettext natural language support functions
php82-gmagick2.0.6RC1php develProvides a wrapper to the GraphicsMagick library
php82-gmp8.2.24php devel matha PHP interface to GMP, the GNU multiprocessing library through which you can work with arbitrary-length integers
php82-iconv8.2.24php textproca PHP interface to the libiconv character encoding conversion functions
php82-igbinary3.2.16php net develPHP serializer.
php82-imagick3.7.0php graphicsPHP extension to create and modify images with ImageMagick
php82-imap8.2.24php maila PHP interface to the IMAP protocol
php82-intl8.2.24php develinternationalization extension for PHP
php82-ipc8.2.24phpinterprocess communication extensions for PHP
php82-jsmin3.0.0php develPHP API for minifying and uglifying JavaScript
php82-ldap8.2.24php databasesa PHP interface to LDAP
php82-lzf1.7.0php develHandles LZF compression / decompression.
php82-mailparse3.1.6php mail develEmail message manipulation
php82-maxminddb1.11.1php develPHP API for reading MaxMind DB files
php82-mbstring8.2.24php textproca PHP extension for manipulating strings in multibyte encodings
php82-mcrypt1.0.7php securitya PHP interface to the mcrypt library, which offers a wide variety of algorithms
php82-memcache8.2php net develPHP bindings for memcache
php82-memcached3.2.0php net develPHP bindings for memcache
php82-meminfo1.1.1phpextension to examine PHP memory contents
php82-mongodb1.16.2php databases develMongoDB Database Driver
php82-mysql8.2.24php databasesa PHP interface to MySQL databases, including the mysqli and pdo_mysql extensions
php82-mysql_xdevapi8.0.30php databasesMySQL X DevAPI for PHP
php82-oauth2.0.7php develoauth consumer extension
php82-odbc8.2.24php databasesa PHP interface for accessing databases via Open DataBase Connectivity (ODBC)
php82-opcache8.2.24phpOPcache improves PHP performance by storing precompiled script bytecode in shared memory, thereby removing the need for PHP to load and parse scripts on each request.
php82-openssl8.2.24php devel securitya PHP interface to OpenSSL signature-generation and -verification and data-encryption and -decryption functions
php82-openswoole22.0.0php net develan event-driven asynchronous & concurrent & coroutine networking engine with high performance for PHP
php82-oracle8.2.24php databasesa PHP interface to Oracle, including the oci8 and pdo_oci extensions
php82-pcntl8.2.24php sysutilsa PHP interface to Unix-style process creation, program execution, signal handling and process termination functions
php82-pcov1.0.11php develA self contained php-code-coverage compatible driver for PHP.
php82-posix8.2.24php sysutilsa PHP interface to additional POSIX functions
php82-postgresql8.2.24php databasesa PHP interface to PostgreSQL, including the pgsql and pdo_pgsql extensions
php82-pspell8.2.24php textproca PHP interface to the aspell library, which lets you check spelling and offer spelling suggestions
php82-psr1.2.0phpinterfaces to PHP Standards Recommendations
php82-raphf2.0.1phpa reusable persistent handle and resource factory API
php82-rar4.2.0php develA PECL extension to create and read rar files.
php82-redis6.0.2php databasesan API for communicating with a Redis database from PHP
php82-rrd2.0.3php net develPHP rrdtool extension
php82-scrypt2.0.1php securitya PHP wrapper for scrypt
php82-snmp8.2.24php sysutilsa PHP interface to the Simple Network Management Protocol (SNMP)
php82-soap8.2.24php neta PHP extension for writing SOAP clients and servers
php82-sockets8.2.24php neta PHP interface to BSD socket communication functions
php82-sodium8.2.24php securitya PHP interface to libsodium, a modern and easy-to-use crypto library
php82-solr2.7.0php devela PHP interface to Apache Solr
php82-sqlite8.2.24php databasesa PHP interface to SQLite, including the sqlite3 and pdo_sqlite extensions
php82-sqlsrv5.12.0php databasesMicrosoft sqlsrv drivers for PHP
php82-ssh21.4.1php netPHP bindings for libssh2
php82-stomp2.0.3php develPECL extension of stomp client
php82-svm0.2.3php mathPHP bindings for libsvm, a support vector machine implementation
php82-swoole5.0.3php net develan event-driven asynchronous & concurrent & coroutine networking engine with high performance for PHP
php82-tidy8.2.24php wwwa PHP interface to tidy, the HTML cleaning and repair utility
php82-timezonedb2024.2php develA PECL Timezone Database.
php82-uploadprogress2.0.2php www develAn extension to track progress of a file upload.
php82-uuid1.2.0php net wwwA wrapper around libuuid from the ext2utils project.
php82-vld0.18.0php develDump the internal representation of PHP scripts
php82-xapian1.4.26develXapian bindings for PHP 8.2
php82-xdebug3.3.2php net develphp debugging extension
php82-xhprof2.3.10php develA Hierarchical Profiler for PHP
php82-xmlrpc1.0.0RC3php textproca PHP extension for writing XML-RPC clients and servers
php82-xsl8.2.24php textproca PHP interface to libxslt, which implements the XSL standard and lets you perform XSL transformations
php82-yaf3.3.6php net devela fast php framework written in c, built in php-ext
php82-yaml2.2.3php devela PHP interface to the YAML parsing library
php82-yaz1.2.4php net databases develPHP/PECL extension for the Z39.50 protocol
php82-zip1.22.4php archiversPHP zip functions
php82-zstd0.13.3php develZstandard compression
php83-amqp2.1.2php netAMQP interface for PHP
php83-apache2handler8.3.12lang wwwphp83 Apache 2 Handler SAPI
php83-APCu5.1.24php develAPC User Cache
php83-calendar8.3.12phpa PHP extension for converting between different calendar formats
php83-cgi8.3.12lang wwwphp83 CGI SAPI
php83-curl8.3.12php net wwwa PHP interface to the curl library, which lets you download files from servers with a variety of protocols
php83-dba8.3.12php databasesa PHP interface for accessing DBM databases such as BerkeleyDB
php83-dbase7.1.1php databasesa PHP interface for accessing dBase databases
php83-enchant8.3.12php textproc devela PHP interface to enchant
php83-event3.1.4php develefficiently schedule I/O, time and signal based events
php83-exif8.3.12php graphicsa PHP interface to the EXIF image metadata functions
php83-ffi8.3.12php devela PHP interface to allow loading of shared libraries
php83-fpm8.3.12lang wwwphp83 FPM SAPI
php83-ftp8.3.12php neta PHP extension for accessing file servers using the File Transfer Protocol
php83-gd8.3.12php graphicsa PHP interface to the gd library
php83-gearman2.1.2php net develLibrary to provide API for communicating with gearmand, using libgearman.
php83-geoip1.1.1php develMap IP address to geographic places
php83-gettext8.3.12php devela PHP interface to the gettext natural language support functions
php83-gmagick2.0.6RC1php develProvides a wrapper to the GraphicsMagick library
php83-gmp8.3.12php devel matha PHP interface to GMP, the GNU multiprocessing library through which you can work with arbitrary-length integers
php83-iconv8.3.12php textproca PHP interface to the libiconv character encoding conversion functions
php83-igbinary3.2.16php net develPHP serializer.
php83-imagick3.7.0php graphicsPHP extension to create and modify images with ImageMagick
php83-imap8.3.12php maila PHP interface to the IMAP protocol
php83-intl8.3.12php develinternationalization extension for PHP
php83-ipc8.3.12phpinterprocess communication extensions for PHP
php83-jsmin3.0.0php develPHP API for minifying and uglifying JavaScript
php83-ldap8.3.12php databasesa PHP interface to LDAP
php83-lzf1.7.0php develHandles LZF compression / decompression.
php83-mailparse3.1.6php mail develEmail message manipulation
php83-maxminddb1.11.1php develPHP API for reading MaxMind DB files
php83-mbstring8.3.12php textproca PHP extension for manipulating strings in multibyte encodings
php83-mcrypt1.0.7php securitya PHP interface to the mcrypt library, which offers a wide variety of algorithms
php83-memcache8.2php net develPHP bindings for memcache
php83-memcached3.2.0php net develPHP bindings for memcache
php83-meminfo1.1.1phpextension to examine PHP memory contents
php83-mongodb1.16.2php databases develMongoDB Database Driver
php83-mysql8.3.12php databasesa PHP interface to MySQL databases, including the mysqli and pdo_mysql extensions
php83-mysql_xdevapi8.0.30php databasesMySQL X DevAPI for PHP
php83-oauth2.0.7php develoauth consumer extension
php83-odbc8.3.12php databasesa PHP interface for accessing databases via Open DataBase Connectivity (ODBC)
php83-opcache8.3.12phpOPcache improves PHP performance by storing precompiled script bytecode in shared memory, thereby removing the need for PHP to load and parse scripts on each request.
php83-openssl8.3.12php devel securitya PHP interface to OpenSSL signature-generation and -verification and data-encryption and -decryption functions
php83-oracle8.3.12php databasesa PHP interface to Oracle, including the oci8 and pdo_oci extensions
php83-pcntl8.3.12php sysutilsa PHP interface to Unix-style process creation, program execution, signal handling and process termination functions
php83-pcov1.0.11php develA self contained php-code-coverage compatible driver for PHP.
php83-posix8.3.12php sysutilsa PHP interface to additional POSIX functions
php83-postgresql8.3.12php databasesa PHP interface to PostgreSQL, including the pgsql and pdo_pgsql extensions
php83-pspell8.3.12php textproca PHP interface to the aspell library, which lets you check spelling and offer spelling suggestions
php83-psr1.2.0phpinterfaces to PHP Standards Recommendations
php83-raphf2.0.1phpa reusable persistent handle and resource factory API
php83-rar4.2.0php develA PECL extension to create and read rar files.
php83-redis6.0.2php databasesan API for communicating with a Redis database from PHP
php83-rrd2.0.3php net develPHP rrdtool extension
php83-scrypt2.0.1php securitya PHP wrapper for scrypt
php83-snmp8.3.12php sysutilsa PHP interface to the Simple Network Management Protocol (SNMP)
php83-soap8.3.12php neta PHP extension for writing SOAP clients and servers
php83-sockets8.3.12php neta PHP interface to BSD socket communication functions
php83-sodium8.3.12php securitya PHP interface to libsodium, a modern and easy-to-use crypto library
php83-solr2.7.0php devela PHP interface to Apache Solr
php83-sqlite8.3.12php databasesa PHP interface to SQLite, including the sqlite3 and pdo_sqlite extensions
php83-sqlsrv5.12.0php databasesMicrosoft sqlsrv drivers for PHP
php83-ssh21.4.1php netPHP bindings for libssh2
php83-stomp2.0.3php develPECL extension of stomp client
php83-svm0.2.3php mathPHP bindings for libsvm, a support vector machine implementation
php83-tidy8.3.12php wwwa PHP interface to tidy, the HTML cleaning and repair utility
php83-timezonedb2024.2php develA PECL Timezone Database.
php83-uploadprogress2.0.2php www develAn extension to track progress of a file upload.
php83-uuid1.2.0php net wwwA wrapper around libuuid from the ext2utils project.
php83-vld0.18.0php develDump the internal representation of PHP scripts
php83-xapian1.4.26develXapian bindings for PHP 8.3
php83-xdebug3.3.2php net develphp debugging extension
php83-xhprof2.3.10php develA Hierarchical Profiler for PHP
php83-xmlrpc1.0.0RC3php textproca PHP extension for writing XML-RPC clients and servers
php83-xsl8.3.12php textproca PHP interface to libxslt, which implements the XSL standard and lets you perform XSL transformations
php83-yaf3.3.6php net devela fast php framework written in c, built in php-ext
php83-yaml2.2.3php devela PHP interface to the YAML parsing library
php83-yaz1.2.4php net databases develPHP/PECL extension for the Z39.50 protocol
php83-zip1.22.4php archiversPHP zip functions
php83-zstd0.13.3php develZstandard compression
php84-apache2handler8.4.0RC1lang wwwphp84 Apache 2 Handler SAPI
php84-calendar8.4.0RC1phpa PHP extension for converting between different calendar formats
php84-cgi8.4.0RC1lang wwwphp84 CGI SAPI
php84-curl8.4.0RC1php net wwwa PHP interface to the curl library, which lets you download files from servers with a variety of protocols
php84-dba8.4.0RC1php databasesa PHP interface for accessing DBM databases such as BerkeleyDB
php84-enchant8.4.0RC1php textproc devela PHP interface to enchant
php84-exif8.4.0RC1php graphicsa PHP interface to the EXIF image metadata functions
php84-ffi8.4.0RC1php devela PHP interface to allow loading of shared libraries
php84-fpm8.4.0RC1lang wwwphp84 FPM SAPI
php84-ftp8.4.0RC1php neta PHP extension for accessing file servers using the File Transfer Protocol
php84-gd8.4.0RC1php graphicsa PHP interface to the gd library
php84-gettext8.4.0RC1php devela PHP interface to the gettext natural language support functions
php84-gmp8.4.0RC1php devel matha PHP interface to GMP, the GNU multiprocessing library through which you can work with arbitrary-length integers
php84-iconv8.4.0RC1php textproca PHP interface to the libiconv character encoding conversion functions
php84-intl8.4.0RC1php develinternationalization extension for PHP
php84-ipc8.4.0RC1phpinterprocess communication extensions for PHP
php84-ldap8.4.0RC1php databasesa PHP interface to LDAP
php84-mbstring8.4.0RC1php textproca PHP extension for manipulating strings in multibyte encodings
php84-mysql8.4.0RC1php databasesa PHP interface to MySQL databases, including the mysqli and pdo_mysql extensions
php84-odbc8.4.0RC1php databasesa PHP interface for accessing databases via Open DataBase Connectivity (ODBC)
php84-opcache8.4.0RC1phpOPcache improves PHP performance by storing precompiled script bytecode in shared memory, thereby removing the need for PHP to load and parse scripts on each request.
php84-openssl8.4.0RC1php devel securitya PHP interface to OpenSSL signature-generation and -verification and data-encryption and -decryption functions
php84-pcntl8.4.0RC1php sysutilsa PHP interface to Unix-style process creation, program execution, signal handling and process termination functions
php84-posix8.4.0RC1php sysutilsa PHP interface to additional POSIX functions
php84-postgresql8.4.0RC1php databasesa PHP interface to PostgreSQL, including the pgsql and pdo_pgsql extensions
php84-snmp8.4.0RC1php sysutilsa PHP interface to the Simple Network Management Protocol (SNMP)
php84-soap8.4.0RC1php neta PHP extension for writing SOAP clients and servers
php84-sockets8.4.0RC1php neta PHP interface to BSD socket communication functions
php84-sodium8.4.0RC1php securitya PHP interface to libsodium, a modern and easy-to-use crypto library
php84-sqlite8.4.0RC1php databasesa PHP interface to SQLite, including the sqlite3 and pdo_sqlite extensions
php84-tidy8.4.0RC1php wwwa PHP interface to tidy, the HTML cleaning and repair utility
php84-xsl8.4.0RC1php textproca PHP interface to libxslt, which implements the XSL standard and lets you perform XSL transformations


原文地址:https://blog.csdn.net/tekin_cn/article/details/142745649

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!