PHP 7 is here with 16.04

Kushal Dev kushaldeveloper at gmail.com
Mon May 16 18:17:56 UTC 2016


Please take a look at UserDirectoryPHP.txt edit it as you see fit and
use it on https://wiki.ubuntu.com/UserDirectoryPHP

I've also attached the output of my terminal in scratch.txt
-------------- next part --------------
## page was renamed from PHPasCGI

== Purpose ==
When completed, this procedure allows users to securely run PHP files from {{{~/public_html/}}} to manipulate their own files.

== Procedure ==
Do not use the method in the Old Procedure section for setting up PHP interpretation in users' home directories -- the old procedure uses an insecure and performance-wasting method for achieving this goal. If all you are seeking is to enable PHP scripts in users' personal {{{public_html}}} directories, simply do the following:

{{{
sudo apt-get install php5
sudo a2enmod php5
}}}

If you're using the latest version of Ubuntu (16.04 or later), consider using PHP7.0 instead of PHP5. To do so, check if you already have PHP installed. 

{{{
php --version 
}}}

If you do not have PHP already installed, you will likely see a message such as 

{{{
$ php --version
The program 'php' can be found in the following packages:
 * php7.0-cli
 * hhvm
Try: sudo apt install <selected package>
}}}

To install PHP from the Ubuntu repositories, 

{{{
sudo apt install php
}}}

If you already have PHP installed, you will likely see something like 

{{{
$ php --version
PHP 7.0.4-7ubuntu2 (cli) ( NTS )
Copyright (c) 1997-2016 The PHP Group
Zend Engine v3.0.0, Copyright (c) 1998-2016 Zend Technologies
    with Zend OPcache v7.0.6-dev, Copyright (c) 1999-2016, by Zend Technologies
}}}

At this point, Apache and PHP are installed and ready to go. A recent update to the Lucid distribution, however, requires a slight change to {{{/etc/apache2/mods-available/php5.conf}}} to re-enable interpretation in users' home directories -- previous distributions do not require this change. Simply open up this file in your favorite editor as root (a simple {{{sudo gedit /etc/apache2/mods-available/php5.conf}}} will suffice) and comment out (or remove) the following lines:

{{{
    <IfModule mod_userdir.c>
        <Directory /home/*/public_html>
            php_admin_value engine Off
        </Directory>
    </IfModule>
}}}

If you don't see anything starting with PHP in {{/etc/apache2/mods-available}}, you likely need to install {{libapache2-mod-php}}. Run 

{{{
sudo apt install libapache2-mod-php
}}}

After running it, you should see phpx.conf and phpx.load where x is the current PHP version. For example, at the time of this writing, I see {{php7.0.conf and php7.0.load}}. Edit the conf file as shown above. 

Once this has been done, restart apache2 with the usual {{{sudo /etc/init.d/apache2 restart}}} and PHP should be successfully installed and working.

Make sure you have userdir enabled. If it is not enabled, run the following to enable it 

{{{
 sudo a2enmod userdir
}}}

'''Security note:''' Running PHP scripts in users' home directories was not disabled for a frivolous reason -- PHP is a full programming language, and as such, can be used by attackers in nefarious ways. Ideally, the PHP engine should only be enabled for users you (the system administrator) trust, and even then sparingly. To do this, instead of removing the above lines, create a file (as root) called {{{/etc/apache2/conf.d/php-in-homedirs.conf}}} with the following contents:

{{{
    <IfModule mod_userdir.c>
        <Directory /home/$USERNAME/public_html>
            php_admin_value engine On
        </Directory>
    </IfModule>
}}}

Simply replace the {{{$USERNAME}}} with the user name of the user you wish to allow PHP access to. Also note that the {{{<Directory>}}} section may be repeated as many times as is necessary. Save the file, and restart Apache with a {{{sudo /etc/init.d/apache2 restart}}} and PHP should only be enabled for the users listed in this file. See the Apache documentation on the {{{Directory}}} tag for more information.

== Old Procedure ==

'''Note:''' The below method for allowing all users to exec their own PHP scripts as themselves is dangerous both to the users' data, and possibly the system itself -- especially if it is enabled system-wide. As a result, it should be avoided at all costs.


Install Apache 2, PHP 5, and support for executing pseudo-binaries.
{{{
sudo apt-get install apache2 php5-cgi binfmt-support
}}}

Configure PHP 5 to run .php scripts from the shell.
{{{
sudo update-binfmts --install PHP /usr/bin/php5-cgi --extension php
}}}

Enable necessary Apache modules.

{{{
sudo a2enmod rewrite
sudo a2enmod suexec
sudo a2enmod include
sudo a2enmod userdir
}}}

Enable Apache's handling of PHP files. Add the following line to /etc/apache2/apache2.conf
{{{
AddHandler cgi-script .php
}}}

Configure the userdir module. Uncomment the following lines in /etc/apache2/apache2.conf.
{{{
UserDir public_html
UserDir disabled root

<Directory /home/*/public_html>
	AllowOverride FileInfo AuthConfig Limit
	Options Indexes SymLinksIfOwnerMatch IncludesNoExec
</Directory>}}}

Add the ExecCGI option. The block should now appear as below.
{{{
UserDir public_html
UserDir disabled root

<Directory /home/*/public_html>
	AllowOverride FileInfo AuthConfig Limit
	Options Indexes SymLinksIfOwnerMatch IncludesNoExec ExecCGI
</Directory>}}}

Reload the Apache configuration.
{{{
sudo /etc/init.d/apache2 force-reload
}}}
-------------- next part --------------
kushal at kushal-VirtualBox:~$ php --version
The program 'php' can be found in the following packages:
 * php7.0-cli
 * hhvm
Try: sudo apt install <selected package>
kushal at kushal-VirtualBox:~$ sudo apt install php
[sudo] password for kushal: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following additional packages will be installed:
  php-common php7.0 php7.0-cli php7.0-common php7.0-fpm php7.0-json php7.0-opcache php7.0-readline
Suggested packages:
  php-pear
The following NEW packages will be installed:
  php php-common php7.0 php7.0-cli php7.0-common php7.0-fpm php7.0-json php7.0-opcache php7.0-readline
0 upgraded, 9 newly installed, 0 to remove and 33 not upgraded.
Need to get 3,164 kB of archives.
After this operation, 13.7 MB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 php-common all 1:35ubuntu6 [10.8 kB]
Get:2 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 php7.0-common amd64 7.0.4-7ubuntu2 [485 kB]
Get:3 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 php7.0-json amd64 7.0.4-7ubuntu2 [16.7 kB]
Get:4 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 php7.0-opcache amd64 7.0.4-7ubuntu2 [76.1 kB]
Get:5 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 php7.0-readline amd64 7.0.4-7ubuntu2 [12.8 kB]
Get:6 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 php7.0-cli amd64 7.0.4-7ubuntu2 [1,276 kB]
Get:7 http://us.archive.ubuntu.com/ubuntu xenial/universe amd64 php7.0-fpm amd64 7.0.4-7ubuntu2 [1,282 kB]
Get:8 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 php7.0 all 7.0.4-7ubuntu2 [1,298 B]
Get:9 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 php all 1:7.0+35ubuntu6 [2,832 B]
Fetched 3,164 kB in 1s (3,041 kB/s)
Selecting previously unselected package php-common.
(Reading database ... 208835 files and directories currently installed.)
Preparing to unpack .../php-common_1%3a35ubuntu6_all.deb ...
Unpacking php-common (1:35ubuntu6) ...
Selecting previously unselected package php7.0-common.
Preparing to unpack .../php7.0-common_7.0.4-7ubuntu2_amd64.deb ...
Unpacking php7.0-common (7.0.4-7ubuntu2) ...
Selecting previously unselected package php7.0-json.
Preparing to unpack .../php7.0-json_7.0.4-7ubuntu2_amd64.deb ...
Unpacking php7.0-json (7.0.4-7ubuntu2) ...
Selecting previously unselected package php7.0-opcache.
Preparing to unpack .../php7.0-opcache_7.0.4-7ubuntu2_amd64.deb ...
Unpacking php7.0-opcache (7.0.4-7ubuntu2) ...
Selecting previously unselected package php7.0-readline.
Preparing to unpack .../php7.0-readline_7.0.4-7ubuntu2_amd64.deb ...
Unpacking php7.0-readline (7.0.4-7ubuntu2) ...
Selecting previously unselected package php7.0-cli.
Preparing to unpack .../php7.0-cli_7.0.4-7ubuntu2_amd64.deb ...
Unpacking php7.0-cli (7.0.4-7ubuntu2) ...
Selecting previously unselected package php7.0-fpm.
Preparing to unpack .../php7.0-fpm_7.0.4-7ubuntu2_amd64.deb ...
Unpacking php7.0-fpm (7.0.4-7ubuntu2) ...
Selecting previously unselected package php7.0.
Preparing to unpack .../php7.0_7.0.4-7ubuntu2_all.deb ...
Unpacking php7.0 (7.0.4-7ubuntu2) ...
Selecting previously unselected package php.
Preparing to unpack .../php_1%3a7.0+35ubuntu6_all.deb ...
Unpacking php (1:7.0+35ubuntu6) ...
Processing triggers for man-db (2.7.5-1) ...
Processing triggers for ureadahead (0.100.0-19) ...
Processing triggers for systemd (229-4ubuntu4) ...
Setting up php-common (1:35ubuntu6) ...
Setting up php7.0-common (7.0.4-7ubuntu2) ...

Creating config file /etc/php/7.0/mods-available/calendar.ini with new version

Creating config file /etc/php/7.0/mods-available/ctype.ini with new version

Creating config file /etc/php/7.0/mods-available/exif.ini with new version

Creating config file /etc/php/7.0/mods-available/fileinfo.ini with new version

Creating config file /etc/php/7.0/mods-available/ftp.ini with new version

Creating config file /etc/php/7.0/mods-available/gettext.ini with new version

Creating config file /etc/php/7.0/mods-available/iconv.ini with new version

Creating config file /etc/php/7.0/mods-available/pdo.ini with new version

Creating config file /etc/php/7.0/mods-available/phar.ini with new version

Creating config file /etc/php/7.0/mods-available/posix.ini with new version

Creating config file /etc/php/7.0/mods-available/shmop.ini with new version

Creating config file /etc/php/7.0/mods-available/sockets.ini with new version

Creating config file /etc/php/7.0/mods-available/sysvmsg.ini with new version

Creating config file /etc/php/7.0/mods-available/sysvsem.ini with new version

Creating config file /etc/php/7.0/mods-available/sysvshm.ini with new version

Creating config file /etc/php/7.0/mods-available/tokenizer.ini with new version
Setting up php7.0-json (7.0.4-7ubuntu2) ...

Creating config file /etc/php/7.0/mods-available/json.ini with new version
Setting up php7.0-opcache (7.0.4-7ubuntu2) ...

Creating config file /etc/php/7.0/mods-available/opcache.ini with new version
Setting up php7.0-readline (7.0.4-7ubuntu2) ...

Creating config file /etc/php/7.0/mods-available/readline.ini with new version
Setting up php7.0-cli (7.0.4-7ubuntu2) ...
update-alternatives: using /usr/bin/php7.0 to provide /usr/bin/php (php) in auto mode
update-alternatives: using /usr/bin/phar7.0 to provide /usr/bin/phar (phar) in auto mode
update-alternatives: using /usr/bin/phar.phar7.0 to provide /usr/bin/phar.phar (phar.phar) in auto mode

Creating config file /etc/php/7.0/cli/php.ini with new version
Setting up php7.0-fpm (7.0.4-7ubuntu2) ...

Creating config file /etc/php/7.0/fpm/php.ini with new version
Setting up php7.0 (7.0.4-7ubuntu2) ...
Setting up php (1:7.0+35ubuntu6) ...
Processing triggers for ureadahead (0.100.0-19) ...
Processing triggers for systemd (229-4ubuntu4) ...
kushal at kushal-VirtualBox:~$ php --version
PHP 7.0.4-7ubuntu2 (cli) ( NTS )
Copyright (c) 1997-2016 The PHP Group
Zend Engine v3.0.0, Copyright (c) 1998-2016 Zend Technologies
    with Zend OPcache v7.0.6-dev, Copyright (c) 1999-2016, by Zend Technologies
kushal at kushal-VirtualBox:~$ sudo service apache2 restart
Failed to restart apache2.service: Unit apache2.service not found.
kushal at kushal-VirtualBox:~$ sudo apt install apache2
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following additional packages will be installed:
  apache2-bin apache2-data apache2-utils libapr1 libaprutil1 libaprutil1-dbd-sqlite3 libaprutil1-ldap liblua5.1-0
Suggested packages:
  apache2-doc apache2-suexec-pristine | apache2-suexec-custom
The following NEW packages will be installed:
  apache2 apache2-bin apache2-data apache2-utils libapr1 libaprutil1 libaprutil1-dbd-sqlite3 libaprutil1-ldap liblua5.1-0
0 upgraded, 9 newly installed, 0 to remove and 33 not upgraded.
Need to get 1,532 kB of archives.
After this operation, 6,350 kB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 libapr1 amd64 1.5.2-3 [86.0 kB]
Get:2 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 libaprutil1 amd64 1.5.4-1build1 [77.1 kB]
Get:3 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 libaprutil1-dbd-sqlite3 amd64 1.5.4-1build1 [10.6 kB]
Get:4 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 libaprutil1-ldap amd64 1.5.4-1build1 [8,720 B]
Get:5 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 liblua5.1-0 amd64 5.1.5-8ubuntu1 [102 kB]
Get:6 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 apache2-bin amd64 2.4.18-2ubuntu3 [918 kB]
Get:7 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 apache2-utils amd64 2.4.18-2ubuntu3 [81.1 kB]
Get:8 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 apache2-data all 2.4.18-2ubuntu3 [162 kB]
Get:9 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 apache2 amd64 2.4.18-2ubuntu3 [86.6 kB]
Fetched 1,532 kB in 0s (2,314 kB/s)   
Selecting previously unselected package libapr1:amd64.
(Reading database ... 208983 files and directories currently installed.)
Preparing to unpack .../libapr1_1.5.2-3_amd64.deb ...
Unpacking libapr1:amd64 (1.5.2-3) ...
Selecting previously unselected package libaprutil1:amd64.
Preparing to unpack .../libaprutil1_1.5.4-1build1_amd64.deb ...
Unpacking libaprutil1:amd64 (1.5.4-1build1) ...
Selecting previously unselected package libaprutil1-dbd-sqlite3:amd64.
Preparing to unpack .../libaprutil1-dbd-sqlite3_1.5.4-1build1_amd64.deb ...
Unpacking libaprutil1-dbd-sqlite3:amd64 (1.5.4-1build1) ...
Selecting previously unselected package libaprutil1-ldap:amd64.
Preparing to unpack .../libaprutil1-ldap_1.5.4-1build1_amd64.deb ...
Unpacking libaprutil1-ldap:amd64 (1.5.4-1build1) ...
Selecting previously unselected package liblua5.1-0:amd64.
Preparing to unpack .../liblua5.1-0_5.1.5-8ubuntu1_amd64.deb ...
Unpacking liblua5.1-0:amd64 (5.1.5-8ubuntu1) ...
Selecting previously unselected package apache2-bin.
Preparing to unpack .../apache2-bin_2.4.18-2ubuntu3_amd64.deb ...
Unpacking apache2-bin (2.4.18-2ubuntu3) ...
Selecting previously unselected package apache2-utils.
Preparing to unpack .../apache2-utils_2.4.18-2ubuntu3_amd64.deb ...
Unpacking apache2-utils (2.4.18-2ubuntu3) ...
Selecting previously unselected package apache2-data.
Preparing to unpack .../apache2-data_2.4.18-2ubuntu3_all.deb ...
Unpacking apache2-data (2.4.18-2ubuntu3) ...
Selecting previously unselected package apache2.
Preparing to unpack .../apache2_2.4.18-2ubuntu3_amd64.deb ...
Unpacking apache2 (2.4.18-2ubuntu3) ...
Processing triggers for libc-bin (2.23-0ubuntu3) ...
Processing triggers for man-db (2.7.5-1) ...
Processing triggers for ureadahead (0.100.0-19) ...
Processing triggers for systemd (229-4ubuntu4) ...
Processing triggers for ufw (0.35-0ubuntu2) ...
Setting up libapr1:amd64 (1.5.2-3) ...
Setting up libaprutil1:amd64 (1.5.4-1build1) ...
Setting up libaprutil1-dbd-sqlite3:amd64 (1.5.4-1build1) ...
Setting up libaprutil1-ldap:amd64 (1.5.4-1build1) ...
Setting up liblua5.1-0:amd64 (5.1.5-8ubuntu1) ...
Setting up apache2-bin (2.4.18-2ubuntu3) ...
Setting up apache2-utils (2.4.18-2ubuntu3) ...
Setting up apache2-data (2.4.18-2ubuntu3) ...
Setting up apache2 (2.4.18-2ubuntu3) ...
Enabling module mpm_event.
Enabling module authz_core.
Enabling module authz_host.
Enabling module authn_core.
Enabling module auth_basic.
Enabling module access_compat.
Enabling module authn_file.
Enabling module authz_user.
Enabling module alias.
Enabling module dir.
Enabling module autoindex.
Enabling module env.
Enabling module mime.
Enabling module negotiation.
Enabling module setenvif.
Enabling module filter.
Enabling module deflate.
Enabling module status.
Enabling conf charset.
Enabling conf localized-error-pages.
Enabling conf other-vhosts-access-log.
Enabling conf security.
Enabling conf serve-cgi-bin.
Enabling site 000-default.
Processing triggers for libc-bin (2.23-0ubuntu3) ...
Processing triggers for ureadahead (0.100.0-19) ...
Processing triggers for systemd (229-4ubuntu4) ...
Processing triggers for ufw (0.35-0ubuntu2) ...
kushal at kushal-VirtualBox:~$ sudo apt install php
Reading package lists... Done
Building dependency tree       
Reading state information... Done
php is already the newest version (1:7.0+35ubuntu6).
0 upgraded, 0 newly installed, 0 to remove and 33 not upgraded.
kushal at kushal-VirtualBox:~$ apache2 --version
[Mon May 16 13:52:26.100483 2016] [core:warn] [pid 17551] AH00111: Config variable ${APACHE_LOCK_DIR} is not defined
[Mon May 16 13:52:26.100606 2016] [core:warn] [pid 17551] AH00111: Config variable ${APACHE_PID_FILE} is not defined
[Mon May 16 13:52:26.100626 2016] [core:warn] [pid 17551] AH00111: Config variable ${APACHE_RUN_USER} is not defined
[Mon May 16 13:52:26.100631 2016] [core:warn] [pid 17551] AH00111: Config variable ${APACHE_RUN_GROUP} is not defined
[Mon May 16 13:52:26.100668 2016] [core:warn] [pid 17551] AH00111: Config variable ${APACHE_LOG_DIR} is not defined
[Mon May 16 13:52:26.106154 2016] [core:warn] [pid 17551:tid 140222247434112] AH00111: Config variable ${APACHE_LOG_DIR} is not defined
[Mon May 16 13:52:26.106402 2016] [core:warn] [pid 17551:tid 140222247434112] AH00111: Config variable ${APACHE_LOG_DIR} is not defined
[Mon May 16 13:52:26.106449 2016] [core:warn] [pid 17551:tid 140222247434112] AH00111: Config variable ${APACHE_LOG_DIR} is not defined
AH00526: Syntax error on line 74 of /etc/apache2/apache2.conf:
Invalid Mutex directory in argument file:${APACHE_LOCK_DIR}
kushal at kushal-VirtualBox:~$ apache2 --version
[Mon May 16 13:52:40.695665 2016] [core:warn] [pid 17552] AH00111: Config variable ${APACHE_LOCK_DIR} is not defined
[Mon May 16 13:52:40.695972 2016] [core:warn] [pid 17552] AH00111: Config variable ${APACHE_PID_FILE} is not defined
[Mon May 16 13:52:40.696013 2016] [core:warn] [pid 17552] AH00111: Config variable ${APACHE_RUN_USER} is not defined
[Mon May 16 13:52:40.696021 2016] [core:warn] [pid 17552] AH00111: Config variable ${APACHE_RUN_GROUP} is not defined
[Mon May 16 13:52:40.696033 2016] [core:warn] [pid 17552] AH00111: Config variable ${APACHE_LOG_DIR} is not defined
[Mon May 16 13:52:40.699122 2016] [core:warn] [pid 17552:tid 140245567698816] AH00111: Config variable ${APACHE_LOG_DIR} is not defined
[Mon May 16 13:52:40.699271 2016] [core:warn] [pid 17552:tid 140245567698816] AH00111: Config variable ${APACHE_LOG_DIR} is not defined
[Mon May 16 13:52:40.699286 2016] [core:warn] [pid 17552:tid 140245567698816] AH00111: Config variable ${APACHE_LOG_DIR} is not defined
AH00526: Syntax error on line 74 of /etc/apache2/apache2.conf:
Invalid Mutex directory in argument file:${APACHE_LOCK_DIR}
kushal at kushal-VirtualBox:~$ cd /etc/apache2/mods-available/
kushal at kushal-VirtualBox:/etc/apache2/mods-available$ ls -a
.                   authn_dbd.load        autoindex.load      dav_lock.load    headers.load              log_forensic.load  negotiation.load     proxy.load           session.load           suexec.load
..                  authn_dbm.load        buffer.load         dbd.load         heartbeat.load            lua.load           proxy_ajp.load       proxy_scgi.load      setenvif.conf          unique_id.load
access_compat.load  authn_file.load       cache_disk.conf     deflate.conf     heartmonitor.load         macro.load         proxy_balancer.conf  proxy_wstunnel.load  setenvif.load          userdir.conf
actions.conf        authn_socache.load    cache_disk.load     deflate.load     ident.load                mime.conf          proxy_balancer.load  ratelimit.load       slotmem_plain.load     userdir.load
actions.load        authnz_fcgi.load      cache.load          dialup.load      include.load              mime.load          proxy.conf           reflector.load       slotmem_shm.load       usertrack.load
alias.conf          authnz_ldap.load      cache_socache.load  dir.conf         info.conf                 mime_magic.conf    proxy_connect.load   remoteip.load        socache_dbm.load       vhost_alias.load
alias.load          authz_core.load       cgid.conf           dir.load         info.load                 mime_magic.load    proxy_express.load   reqtimeout.conf      socache_memcache.load  xml2enc.load
allowmethods.load   authz_dbd.load        cgid.load           dump_io.load     lbmethod_bybusyness.load  mpm_event.conf     proxy_fcgi.load      reqtimeout.load      socache_shmcb.load
asis.load           authz_dbm.load        cgi.load            echo.load        lbmethod_byrequests.load  mpm_event.load     proxy_fdpass.load    request.load         speling.load
auth_basic.load     authz_groupfile.load  charset_lite.load   env.load         lbmethod_bytraffic.load   mpm_prefork.conf   proxy_ftp.conf       rewrite.load         ssl.conf
auth_digest.load    authz_host.load       data.load           expires.load     lbmethod_heartbeat.load   mpm_prefork.load   proxy_ftp.load       sed.load             ssl.load
auth_form.load      authz_owner.load      dav_fs.conf         ext_filter.load  ldap.conf                 mpm_worker.conf    proxy_html.conf      session_cookie.load  status.conf
authn_anon.load     authz_user.load       dav_fs.load         file_cache.load  ldap.load                 mpm_worker.load    proxy_html.load      session_crypto.load  status.load
authn_core.load     autoindex.conf        dav.load            filter.load      log_debug.load            negotiation.conf   proxy_http.load      session_dbd.load     substitute.load
kushal at kushal-VirtualBox:/etc/apache2/mods-available$ sudo service apache2 start
kushal at kushal-VirtualBox:/etc/apache2/mods-available$ ls -a
.                   authn_dbd.load        autoindex.load      dav_lock.load    headers.load              log_forensic.load  negotiation.load     proxy.load           session.load           suexec.load
..                  authn_dbm.load        buffer.load         dbd.load         heartbeat.load            lua.load           proxy_ajp.load       proxy_scgi.load      setenvif.conf          unique_id.load
access_compat.load  authn_file.load       cache_disk.conf     deflate.conf     heartmonitor.load         macro.load         proxy_balancer.conf  proxy_wstunnel.load  setenvif.load          userdir.conf
actions.conf        authn_socache.load    cache_disk.load     deflate.load     ident.load                mime.conf          proxy_balancer.load  ratelimit.load       slotmem_plain.load     userdir.load
actions.load        authnz_fcgi.load      cache.load          dialup.load      include.load              mime.load          proxy.conf           reflector.load       slotmem_shm.load       usertrack.load
alias.conf          authnz_ldap.load      cache_socache.load  dir.conf         info.conf                 mime_magic.conf    proxy_connect.load   remoteip.load        socache_dbm.load       vhost_alias.load
alias.load          authz_core.load       cgid.conf           dir.load         info.load                 mime_magic.load    proxy_express.load   reqtimeout.conf      socache_memcache.load  xml2enc.load
allowmethods.load   authz_dbd.load        cgid.load           dump_io.load     lbmethod_bybusyness.load  mpm_event.conf     proxy_fcgi.load      reqtimeout.load      socache_shmcb.load
asis.load           authz_dbm.load        cgi.load            echo.load        lbmethod_byrequests.load  mpm_event.load     proxy_fdpass.load    request.load         speling.load
auth_basic.load     authz_groupfile.load  charset_lite.load   env.load         lbmethod_bytraffic.load   mpm_prefork.conf   proxy_ftp.conf       rewrite.load         ssl.conf
auth_digest.load    authz_host.load       data.load           expires.load     lbmethod_heartbeat.load   mpm_prefork.load   proxy_ftp.load       sed.load             ssl.load
auth_form.load      authz_owner.load      dav_fs.conf         ext_filter.load  ldap.conf                 mpm_worker.conf    proxy_html.conf      session_cookie.load  status.conf
authn_anon.load     authz_user.load       dav_fs.load         file_cache.load  ldap.load                 mpm_worker.load    proxy_html.load      session_crypto.load  status.load
authn_core.load     autoindex.conf        dav.load            filter.load      log_debug.load            negotiation.conf   proxy_http.load      session_dbd.load     substitute.load
kushal at kushal-VirtualBox:/etc/apache2/mods-available$ sudo apt install php
Reading package lists... Done
Building dependency tree       
Reading state information... Done
php is already the newest version (1:7.0+35ubuntu6).
0 upgraded, 0 newly installed, 0 to remove and 33 not upgraded.
kushal at kushal-VirtualBox:/etc/apache2/mods-available$ sudo a2enmod php
ERROR: Module php does not exist!
kushal at kushal-VirtualBox:/etc/apache2/mods-available$ sudo a2enmod php7.0
ERROR: Module php7.0 does not exist!
kushal at kushal-VirtualBox:/etc/apache2/mods-available$ sudo a2enmod php7
ERROR: Module php7 does not exist!
kushal at kushal-VirtualBox:/etc/apache2/mods-available$ sudo a2enmod php5
ERROR: Module php5 does not exist!
kushal at kushal-VirtualBox:/etc/apache2/mods-available$ sudo apt search apache
Sorting... Done
Full Text Search... Done
activemq/xenial,xenial 5.13.2+dfsg-2 all
  Java message broker - server

adzapper/xenial,xenial 20090301.dfsg.1-0.2 all
  proxy advertisement zapper add-on

alpine/xenial 2.20+dfsg1-2 amd64
  Text-based email client, friendly for novices but powerful

alpine-dbg/xenial 2.20+dfsg1-2 amd64
  Text-based email client's debugging symbols

alpine-doc/xenial,xenial 2.20+dfsg1-2 all
  Text-based email client's documentation

ant-contrib/xenial,xenial 1.0~b3+svn177-7 all
  collection of tasks, types and other tools for Apache Ant

apache2/xenial,now 2.4.18-2ubuntu3 amd64 [installed]
  Apache HTTP Server

apache2-bin/xenial,now 2.4.18-2ubuntu3 amd64 [installed,automatic]
  Apache HTTP Server (modules and other binary files)

apache2-data/xenial,xenial,now 2.4.18-2ubuntu3 all [installed,automatic]
  Apache HTTP Server (common files)

apache2-dbg/xenial 2.4.18-2ubuntu3 amd64
  Apache debugging symbols

apache2-dev/xenial 2.4.18-2ubuntu3 amd64
  Apache HTTP Server (development headers)

apache2-doc/xenial,xenial 2.4.18-2ubuntu3 all
  Apache HTTP Server (on-site documentation)

apache2-suexec-custom/xenial 2.4.18-2ubuntu3 amd64
  Apache HTTP Server configurable suexec program for mod_suexec

apache2-suexec-pristine/xenial 2.4.18-2ubuntu3 amd64
  Apache HTTP Server standard suexec program for mod_suexec

apache2-utils/xenial,now 2.4.18-2ubuntu3 amd64 [installed,automatic]
  Apache HTTP Server (utility programs for web servers)

apachedex/xenial,xenial 1.6.2-1 all
  Compute APDEX from Apache-style logs

apacheds/xenial,xenial 2.0.0~M15-3 all
  Apache Directory Server

apachetop/xenial 0.12.6-18build1 amd64
  Realtime Apache monitoring tool

archmage/xenial,xenial 1:0.3.1-3 all
  CHM(Compiled HTML) Decompressor

asp.net-examples/xenial,xenial 4.2-2build1 all
  demo pages for ASP.NET infrastructure

asql/xenial,xenial 1.6-1 all
  Run SQL queries against apache logs

auth2db-filters/xenial,xenial 0.2.5-2+dfsg-5ubuntu1 all
  Auth2db defaults filters pack

bitz-server/xenial 1.0.0-2 amd64
  ICAP server (RFC 3507) implementation in C++

bitz-server-dbg/xenial 1.0.0-2 amd64
  ICAP server (RFC 3507) implementation in C++ (server debug symbols)

bitz-server-doc/xenial,xenial 1.0.0-2 all
  ICAP server (RFC 3507) implementation in C++ (Documentation)

browser-history/xenial 2.8-21 amd64
  User daemon that tracks URLs looked at and logs them

cipux-cat-web/xenial,xenial 3.4.0.3-4.2 all
  user and resource management framework CipUX - web-based admin tools

cl-modlisp/xenial,xenial 0.6-7 all
  Common Lisp interface to the Apache mod-lisp module

collectd-core/xenial 5.5.1-1build2 amd64
  statistics collection and monitoring daemon (core system)

coquelicot/xenial,xenial 0.9.5-1 all
  "one-click" file sharing web application with a focus on users' privacy

cortado/xenial,xenial 0.6.0-3 all
  streaming applet for Ogg formats

couchdb/xenial,xenial 1.6.0-0ubuntu7 all
  RESTful document oriented database - system-wide instance

couchdb-bin/xenial 1.6.0-0ubuntu7 amd64
  RESTful document oriented database

couchdb-common/xenial,xenial 1.6.0-0ubuntu7 all
  RESTful document oriented database - common data

cronolog/xenial 1.6.2+rpk-1ubuntu1 amd64
  Logfile rotator for web servers

cs/xenial,xenial 0.6.10-1 all
  simple, yet powerful CloudStack API client

dacs/xenial 1.4.28b-3ubuntu2 amd64
  Distributed Access Control System (DACS)

derby-doc/xenial,xenial 10.10.2.0-1 all
  Apache Derby API documentation and examples

derby-tools/xenial,xenial 10.10.2.0-1 all
  Apache Derby Tools

drbdlinks/xenial,xenial 1.22-1 all
  Manages symlinks into a shared DRBD partition

elog/xenial 3.1.1-1-1 amd64
  Logbook system to manage notes through a Web interface

emacs-goodies-el/xenial,xenial 35.12ubuntu2 all
  Miscellaneous add-ons for Emacs

emboss-explorer/xenial,xenial 2.2.0-8 all
  web-based GUI to EMBOSS

fail2ban/xenial,xenial 0.9.3-1 all
  ban hosts that cause multiple authentication errors

fusiondirectory-plugin-apache2/xenial,xenial 1.0.8.8-3ubuntu2 all
  Apache virtualhost plugin for FusionDirectory

fusiondirectory-plugin-apache2-schema/xenial,xenial 1.0.8.8-3ubuntu2 all
  LDAP schema for FusionDirectory apache2 plugin

fusionforge-plugin-authhttpd/xenial,xenial 6.0.3+20151023-1ubuntu1 all
  FusionForge plugin - HTTPD authentication

fusionforge-web/xenial,xenial 6.0.3+20151023-1ubuntu1 all
  collaborative development tool - web part (using Apache)

fusionforge-web-vhosts/xenial,xenial 6.0.3+20151023-1ubuntu1 all
  collaborative development tool - web vhosts (using Apache)

gforge-web-apache2/xenial,xenial 6.0.3+20151023-1ubuntu1 all
  Dummy upgrade package for FusionForge

gitweb/xenial,xenial 1:2.7.4-0ubuntu1 all
  fast, scalable, distributed revision control system (web interface)

goaccess/xenial 1:0.9.4-1build1 amd64
  log analyzer and interactive viewer for the Apache Webserver

golang-github-gorilla-handlers-dev/xenial,xenial 0.0~git20160115.0.8f27580-0ubuntu1 all
  a collection of useful handlers for Go's net/http package

golang-github-mesos-mesos-go-dev/xenial,xenial 0.0.1+dfsg-1 all
  Go language bindings for Apache Mesos

golang-gopkg-eapache-go-resiliency.v1-dev/xenial,xenial 0.0~git20150213.0.6800482-1 all
  resiliency patterns for golang

golang-gopkg-eapache-queue.v1-dev/xenial,xenial 1.0.2-1 all
  fast golang queue using ring-buffer

google-android-sdk-docs-installer/xenial,xenial 23.0.0.0 all
  Android SDK Documentation from Google

gridsite/xenial 2.2.6-1build1 amd64
  Grid Security for the Web, Web platforms for Grids

gridsite-clients/xenial 2.2.6-1build1 amd64
  Clients to gridsite: htcp, htrm, htmv

gridsite-dbg/xenial 2.2.6-1build1 amd64
  Debugging symbols for gridsite

gridsite-doc/xenial,xenial 2.2.6-1build1 all
  Developers Documentation for gridsite

http-icons/xenial,xenial 0~20041010-1 all
  classic MIME icons

ip2host/xenial,xenial 1.13-2 all
  Resolve IPs to hostnames in web server logs

jardiff/xenial,xenial 0.2-4 all
  tool to visualise API differences between two JAR files

javascript-common/xenial,xenial 11 all
  Base support for JavaScript library packages

jdresolve/xenial,xenial 0.6.1-4ubuntu1 all
  fast alternative to apache logresolve

jekyll/xenial,xenial 3.0.1+dfsg-1 all
  Simple, blog aware, static site generator

jeuclid-cli/xenial,xenial 3.1.9-3 all
  Complete MathML rendering solution (command line tools)

jeuclid-mathviewer/xenial,xenial 3.1.9-3 all
  Complete MathML rendering solution (Swing MathViewer)

jmeter/xenial,xenial 2.11-5 all
  Load testing and performance measurement application (main application)

jmeter-apidoc/xenial,xenial 2.11-5 all
  Load testing and performance measurement application (API doc)

jmeter-ftp/xenial,xenial 2.11-5 all
  Load testing and performance measurement application (ftp module)

jmeter-help/xenial,xenial 2.11-5 all
  Load testing and performance measurement application (user manual)

jmeter-http/xenial,xenial 2.11-5 all
  Load testing and performance measurement application (http module)

jmeter-java/xenial,xenial 2.11-5 all
  Load testing and performance measurement application (java module)

jmeter-jms/xenial,xenial 2.11-5 all
  Load testing and performance measurement application (jms module)

jmeter-junit/xenial,xenial 2.11-5 all
  Load testing and performance measurement application (junit module)

jmeter-ldap/xenial,xenial 2.11-5 all
  Load testing and performance measurement application (ldap module)

jmeter-mail/xenial,xenial 2.11-5 all
  Load testing and performance measurement application (mail module)

jmeter-mongodb/xenial,xenial 2.11-5 all
  Load testing and performance measurement application (mongodb module)

jmeter-tcp/xenial,xenial 2.11-5 all
  Load testing and performance measurement application (tcp module)

jscommunicator-web-phone/xenial,xenial 2.1.3-1 all
  Basic SIP video-phone web page using WebRTC

jsurf-alggeo/xenial,xenial 0.3.0+ds-1 all
  Java based visualization library for real algebraic geometry

kafkacat/xenial 1.2.0-2 amd64
  generic producer and consumer for Apache Kafka

klone/xenial,xenial 2.1.0~rc1-1 all
  embedded web application development framework

koji-servers/xenial,xenial 1.10.0-1 all
  RPM-based build system - server components

ksystemlog/xenial 4:15.12.3-0ubuntu1 amd64
  system log viewer

lemonldap-ng/xenial,xenial 1.4.6-3 all
  OpenID, CAS and SAML compatible Web-SSO system

lemonldap-ng-doc/xenial,xenial 1.4.6-3 all
  Lemonldap::NG Web-SSO system documentation

libactivemq-activeio-java/xenial,xenial 3.1.1-1 all
  ActiveMQ ActiveIO protocol implementation framework

libactivemq-activeio-java-doc/xenial,xenial 3.1.1-1 all
  ActiveMQ ActiveIO protocol implementation framework - documentation

libactivemq-java/xenial,xenial 5.13.2+dfsg-2 all
  Java message broker core libraries

libactivemq-java-doc/xenial,xenial 5.13.2+dfsg-2 all
  Java message broker core libraries - documentation

libactivemq-protobuf-java/xenial,xenial 1.1-4 all
  ActiveMQ Protocol Buffers Maven plugin

libactivemq-protobuf-java-doc/xenial,xenial 1.1-4 all
  ActiveMQ Protocol Buffers Maven plugin - documentation

libapache-admin-config-perl/xenial,xenial 0.94-1.1 all
  a Perl module to read/write Apache like configuration files

libapache-asp-perl/xenial,xenial 2.62-2 all
  perl Apache::ASP - Active Server Pages for Apache with mod_perl

libapache-authenhook-perl/xenial 2.00-04+pristine-5build3 amd64
  Perl API for Apache 2.1 authentication

libapache-authznetldap-perl/xenial,xenial 0.07-6 all
  Apache-Perl module that enables to authorize a user with LDAP attributes

libapache-db-perl/xenial 0.14-4build3 amd64
  module to run the interactive Perl debugger under mod_perl

libapache-dbi-perl/xenial,xenial 1.12-1 all
  interface connecting apache server to database via perl's DBI

libapache-dbilogger-perl/xenial,xenial 0.93-12 all
  Perl module for tracking what's being transferred in a DBI database

libapache-directory-api-java/xenial,xenial 1.0.0~M20-3 all
  Apache Directory LDAP API

libapache-directory-jdbm-java/xenial,xenial 2.0.0~M2-1 all
  ApacheDS JDBM Implementation

libapache-gallery-perl/xenial,xenial 1.0.2-4.1 all
  Apache module to create image galleries on-the-fly

libapache-htgroup-perl/xenial,xenial 1.23-1 all
  interface to Apache authentication group files

libapache-htpasswd-perl/xenial,xenial 1.8-1.1 all
  Manage Unix crypt-style password file

libapache-logformat-compiler-perl/xenial,xenial 0.33-1 all
  Perl module to pre-compile a LogFormat string

libapache-mime4j-java/xenial,xenial 0.7.2-4 all
  MIME and RFC822 parser for Java

libapache-mime4j-java-doc/xenial,xenial 0.7.2-4 all
  MIME and RFC822 parser for Java - documentation

libapache-mod-jk-doc/xenial,xenial 1:1.2.41-1 all
  Documentation of libapache2-mod-jk package

libapache-poi-java/xenial,xenial 3.10.1-2 all
  Apache POI - Java API for Microsoft Documents

libapache-poi-java-doc/xenial,xenial 3.10.1-2 all
  Apache POI - Java API for Microsoft Documents (Documentation)

libapache-pom-java/xenial,xenial 10-2build1 all
  Maven metadata for all Apache Software projects

libapache-session-browseable-perl/xenial,xenial 1.1-1 all
  module adding index and search methods to Apache::Session

libapache-session-ldap-perl/xenial,xenial 0.4-1 all
  LDAP implementation of Apache::Session

libapache-session-memcached-perl/xenial,xenial 0.03-1 all
  Perl module for storing persistent data using memcached

libapache-session-perl/xenial,xenial 1.93-2ubuntu1 all
  modules for keeping persistent user data across HTTP requests

libapache-session-wrapper-perl/xenial,xenial 0.34-2 all
  simple wrapper around Apache::Session

libapache-sessionx-perl/xenial,xenial 2.01-4 all
  extended persistence framework for session data

libapache-singleton-perl/xenial,xenial 0.16-1 all
  Singleton class for mod_perl

libapache-ssllookup-perl/xenial 2.00-04-1build1 amd64
  glue layer between Perl handlers and the mod_ssl public API

libapache2-authcassimple-perl/xenial,xenial 0.10-3 all
  Apache2 module to authenticate trough a CAS server

libapache2-authcookie-perl/xenial,xenial 3.24-1 all
  Perl Authentication and Authorization via cookies

libapache2-authenntlm-perl/xenial 0.02-8build1 amd64
  module for Microsoft NTLM and Basic User Authentication

libapache2-mod-apparmor/xenial 2.10.95-0ubuntu2 amd64
  changehat AppArmor library as an Apache module

libapache2-mod-apreq2/xenial 2.13-4ubuntu2 amd64
  generic Apache request library - Apache module

libapache2-mod-auth-cas/xenial 1.0.9.1-4 amd64
  CAS authentication module for Apache2

libapache2-mod-auth-gssapi/xenial 1.3.2-1 amd64
  GSSAPI Authentication module for Apache2

libapache2-mod-auth-kerb/xenial 5.4-2.2 amd64
  apache2 module for Kerberos authentication

libapache2-mod-auth-mellon/xenial 0.12.0-1 amd64
  SAML 2.0 authentication module for Apache

libapache2-mod-auth-memcookie/xenial 1.0.2-8 amd64
  Apache2 authentication and authorization module.

libapache2-mod-auth-ntlm-winbind/xenial 0.0.0.lorikeet+svn+801-4 amd64
  apache2 module for NTLM authentication against Winbind

libapache2-mod-auth-openid/xenial 0.8-1build1 amd64
  OpenID authentication module for Apache2

libapache2-mod-auth-openidc/xenial 1.8.5-1 amd64
  OpenID Connect authentication module for Apache

libapache2-mod-auth-pgsql/xenial 2.0.3-6.1 amd64
  Module for Apache2 which provides PostgreSQL authentication

libapache2-mod-auth-plain/xenial 2.0.52 amd64
  Module for Apache2 which provides plaintext authentication

libapache2-mod-auth-pubtkt/xenial 0.8-4 amd64
  key-based single-sign-on authentication module for Apache

libapache2-mod-auth-radius/xenial 1.5.8-1.3 amd64
  Apache 2.x module for RADIUS authentication

libapache2-mod-auth-tkt/xenial 2.1.0+dfsg-1 amd64
  lightweight single-sign-on authentication module for Apache

libapache2-mod-authn-sasl/xenial 1.2-2 amd64
  SASL authentication backend provider for Apache

libapache2-mod-authn-webid/xenial 0~20110301-4 amd64
  WebID FOAF+SSL authentication module for Apache

libapache2-mod-authn-yubikey/xenial 1.0-1.1 amd64
  Yubikey authentication provider for Apache

libapache2-mod-authnz-external/xenial 3.3.2-0.1 amd64
  authenticate Apache against external authentication services

libapache2-mod-authnz-pam/xenial 1.0.1-1 amd64
  PAM authorization checker and PAM Basic Authentication provider

libapache2-mod-authnz-persona/xenial 0.8.1-1 amd64
  Apache module implementing Persona authentication

libapache2-mod-authz-securepass/xenial 0~20150105.gitda462d3-1 amd64
  Apache2 module for authorizing SecurePass users

libapache2-mod-authz-unixgroup/xenial 1.1.0-0.1 amd64
  access control based on on unix group membership for Apache

libapache2-mod-bw/xenial 0.92-11 amd64
  bandwidth limiting module for apache2

libapache2-mod-dacs/xenial 1.4.28b-3ubuntu2 amd64
  Distributed Access Control System (DACS) - Apache Module

libapache2-mod-defensible/xenial 1.4-3.1ubuntu2 amd64
  module for Apache2 which provides DNSBL usage

libapache2-mod-dnssd/xenial 0.6-3.1 amd64
  Zeroconf support for Apache 2 via avahi

libapache2-mod-encoding/xenial 20040616-5.2 amd64
  Apache2 module for non-ascii filename interoperability

libapache2-mod-evasive/xenial 1.10.1-3 amd64
  evasive module to minimize HTTP DoS or brute force attacks

libapache2-mod-fastcgi/xenial 2.4.7~0910052141-1.2 amd64
  Apache 2 FastCGI module for long-running CGI scripts

libapache2-mod-fcgid/xenial 1:2.3.9-1 amd64
  FastCGI interface module for Apache 2

libapache2-mod-fcgid-dbg/xenial 1:2.3.9-1 amd64
  debugging symbols for mod_fcgid

libapache2-mod-form/xenial 0~svn146-1 amd64
  Apache module to decode data submitted from Web forms

libapache2-mod-form-dev/xenial,xenial 0~svn146-1 all
  Apache module to decode data submitted from Web forms (development files)

libapache2-mod-geoip/xenial 1.2.10-1 amd64
  GeoIP support for apache2

libapache2-mod-gnutls/xenial 0.7.3-0ubuntu1 amd64
  Apache module for SSL and TLS encryption with GnuTLS

libapache2-mod-intercept-form-submit/xenial 0.9.8-1 amd64
  Apache module to intercept login form submission and run PAM authentication

libapache2-mod-jk/xenial 1:1.2.41-1 amd64
  Apache 2 connector for the Tomcat Java servlet engine

libapache2-mod-ldap-userdir/xenial 1.1.19-2.1 amd64
  Apache module that provides UserDir lookups via LDAP

libapache2-mod-ldap-userdir-dbg/xenial 1.1.19-2.1 amd64
  Debugging symbols for mod_ldap_userdir

libapache2-mod-lisp/xenial 1.3.1-1.3 amd64
  An Apache2 module that interfaces with Lisp environments

libapache2-mod-log-slow/xenial 1.0.8-3 amd64
  Apache module for logging of slow requests handling

libapache2-mod-log-sql/xenial 1.100-16.2build1 amd64
  Use SQL to store/write your Apache queries logs - Base

libapache2-mod-log-sql-dbi/xenial 1.100-16.2build1 amd64
  Use SQL to store/write your Apache queries logs - DBI interface

libapache2-mod-log-sql-mysql/xenial 1.100-16.2build1 amd64
  Use SQL to store/write your Apache queries logs - MySQL interface

libapache2-mod-log-sql-ssl/xenial 1.100-16.2build1 amd64
  Use SQL to store/write your Apache queries logs - SSL extension

libapache2-mod-lookup-identity/xenial 0.9.3-1 amd64
  Apache module to retrieve additional information about the authenticated user

libapache2-mod-mapcache/xenial 1.4.0-4 amd64
  tile caching server - Apache module

libapache2-mod-mime-xattr/xenial 0.4-6 amd64
  Apache2 module to get MIME info from filesystem extended attributes

libapache2-mod-mono/xenial 3.8-3 amd64
  Apache module for running ASP.NET applications on Mono

libapache2-mod-musicindex/xenial 1.4.1-1build1 amd64
  Browse, stream, download and search through MP3/Ogg/FLAC/MP4 files

libapache2-mod-neko/xenial,xenial 2.0.0-4build1 all
  Apache module for running server-side Neko programs

libapache2-mod-netcgi-apache/xenial 4.0.4-1build3 amd64
  OCaml application-level Internet libraries - netcgi2 Apache2 connector

libapache2-mod-nss/xenial 1.0.12-2 amd64
  NSS-based SSL module for Apache2

libapache2-mod-parser3/xenial 3.4.3-6 amd64
  Parser 3, HTML-embedded scripting language (Apache2 module)

libapache2-mod-passenger/xenial 5.0.27-2 amd64
  Rails and Rack support for Apache2

libapache2-mod-perl2/xenial 2.0.9-4ubuntu1 amd64
  Integration of perl with the Apache2 web server

libapache2-mod-perl2-dev/xenial,xenial 2.0.9-4ubuntu1 all
  Integration of perl with the Apache2 web server - development files

libapache2-mod-perl2-doc/xenial,xenial 2.0.9-4ubuntu1 all
  Integration of perl with the Apache2 web server - documentation

libapache2-mod-php/xenial,xenial 1:7.0+35ubuntu6 all
  server-side, HTML-embedded scripting language (Apache 2 module) (default)

libapache2-mod-php7.0/xenial 7.0.4-7ubuntu2 amd64
  server-side, HTML-embedded scripting language (Apache 2 module)

libapache2-mod-proxy-msrpc/xenial 0.6-1 amd64
  Apache module for Outlook Anywhere support in reverse proxy setups

libapache2-mod-proxy-uwsgi/xenial 2.0.12-5ubuntu3 amd64
  uwsgi proxy module for Apache2 (mod_uwsgi)

libapache2-mod-proxy-uwsgi-dbg/xenial 2.0.12-5ubuntu3 amd64
  debugging symbols for Apache2 mod_proxy_uwsgi

libapache2-mod-python/xenial 3.3.1-11ubuntu2 amd64
  Python-embedding module for Apache 2

libapache2-mod-python-doc/xenial,xenial 3.3.1-11ubuntu2 all
  Python-embedding module for Apache 2 - documentation

libapache2-mod-qos/xenial 11.21-1 amd64
  quality of service module for the apache2

libapache2-mod-r-base/xenial 1.2.7-1 amd64
  server-side R integration with Apache 2

libapache2-mod-removeip/xenial 1.0b-5.1 amd64
  Module to remove IP from apache2's logs

libapache2-mod-rivet/xenial 2.2.4-1 amd64
  Server-side Tcl programming system combining ease of use and power

libapache2-mod-rivet-doc/xenial,xenial 2.2.4-1 all
  Documentation for Rivet, a server-side Tcl programming system

libapache2-mod-rpaf/xenial 0.6-13 amd64
  module for Apache2 which takes the last IP from the 'X-Forwarded-For' header

libapache2-mod-ruid2/xenial 0.9.8-3 amd64
  suexec module for Apache 2

libapache2-mod-ruwsgi/xenial 2.0.12-5ubuntu3 amd64
  uwsgi module for Apache2 (mod_Ruwsgi)

libapache2-mod-ruwsgi-dbg/xenial 2.0.12-5ubuntu3 amd64
  debugging symbols for Apache2 mod_Ruwsgi

libapache2-mod-scgi/xenial 1.13-1.1build1 amd64
  Apache module implementing the SCGI protocol

libapache2-mod-security2/xenial 2.9.0-1 amd64
  Tighten web applications security for Apache

libapache2-mod-shib2/xenial 2.5.3+dfsg-2.1build1 amd64
  Federated web single sign-on system (Apache module)

libapache2-mod-spamhaus/xenial 0.7-1.1 amd64
  Apache DNSBL module that blocks listed IP addresses

libapache2-mod-svn/xenial 1.9.3-2ubuntu1 amd64
  Apache Subversion server modules for Apache httpd

libapache2-mod-upload-progress/xenial 0.2-2 amd64
  upload progress support for the Apache web server

libapache2-mod-uwsgi/xenial 2.0.12-5ubuntu3 amd64
  uwsgi module for Apache2 (mod_uwsgi)

libapache2-mod-uwsgi-dbg/xenial 2.0.12-5ubuntu3 amd64
  debugging symbols for Apache2 mod_uwsgi

libapache2-mod-vhost-ldap/xenial 2.4.0-1 amd64
  Apache 2 module for Virtual Hosting from LDAP

libapache2-mod-watchcat/xenial 1.1.2-1 amd64
  Process monitoring Apache module

libapache2-mod-webauth/xenial 4.7.0-3build1 amd64
  Apache module for WebAuth authentication

libapache2-mod-webauthldap/xenial 4.7.0-3build1 amd64
  Apache module for WebAuth LDAP lookup and authorization

libapache2-mod-webkdc/xenial 4.7.0-3build1 amd64
  Apache modules for a WebAuth authentication KDC

libapache2-mod-wsgi/xenial 4.3.0-1.1build1 amd64
  Python WSGI adapter module for Apache

libapache2-mod-wsgi-py3/xenial 4.3.0-1.1build1 amd64
  Python 3 WSGI adapter module for Apache

libapache2-mod-xforward/xenial 0.6-1 amd64
  Apache module implements redirection based on X-Forward response header

libapache2-mod-xsendfile/xenial 0.12-2 amd64
  Serve large static files efficiently from web applications

libapache2-modsecurity/xenial,xenial 2.9.0-1 all
  Dummy transitional package

libapache2-mpm-itk/xenial 2.4.7-04-1 amd64
  multiuser module for Apache

libapache2-reload-perl/xenial,xenial 0.13-1 all
  module for reloading Perl modules when changed on disk

libapache2-request-perl/xenial 2.13-4ubuntu2 amd64
  generic Apache request library - Perl modules

libapache2-sitecontrol-perl/xenial,xenial 1.05-1 all
  perl web site authentication/authorization system

libapache2-svn/xenial,xenial 1.9.3-2ubuntu1 all
  Apache Subversion server modules for Apache httpd (dummy package)

libapache2-webauth/xenial,xenial 4.7.0-3build1 all
  Transitional package for WebAuth Apache modules

libapache2-webkdc/xenial,xenial 4.7.0-3build1 all
  Transitional package for WebAuth authentication KDC

libapacheds-i18n-java/xenial,xenial 2.0.0~M15-3 all
  Apache Directory Server (i18n)

libapacheds-java/xenial,xenial 2.0.0~M15-3 all
  Apache Directory Server (Libraries)

libapacheds-kerberos-codec-java/xenial,xenial 2.0.0~M15-3 all
  Apache Directory Server (Kerberos Codec)

libapp-control-perl/xenial,xenial 1.02-3 all
  Perl module for apachectl style control of another executable

libapr-memcache-dev/xenial 0.7.0-3 amd64
  memcache client - development libraries

libapr-memcache0/xenial 0.7.0-3 amd64
  memcache client - shared library

libapr1/xenial,now 1.5.2-3 amd64 [installed,automatic]
  Apache Portable Runtime Library

libapr1-dbg/xenial 1.5.2-3 amd64
  Apache Portable Runtime Library - Debugging Symbols

libapr1-dev/xenial 1.5.2-3 amd64
  Apache Portable Runtime Library - Development Headers

libapreq2-3/xenial 2.13-4ubuntu2 amd64
  generic Apache request library

libapreq2-dev/xenial 2.13-4ubuntu2 amd64
  generic Apache request library - development files

libapreq2-doc/xenial,xenial 2.13-4ubuntu2 all
  generic Apache request library - documentation

libaprutil1/xenial,now 1.5.4-1build1 amd64 [installed,automatic]
  Apache Portable Runtime Utility Library

libaprutil1-dbd-mysql/xenial 1.5.4-1build1 amd64
  Apache Portable Runtime Utility Library - MySQL Driver

libaprutil1-dbd-odbc/xenial 1.5.4-1build1 amd64
  Apache Portable Runtime Utility Library - ODBC Driver

libaprutil1-dbd-pgsql/xenial 1.5.4-1build1 amd64
  Apache Portable Runtime Utility Library - PostgreSQL Driver

libaprutil1-dbd-sqlite3/xenial,now 1.5.4-1build1 amd64 [installed,automatic]
  Apache Portable Runtime Utility Library - SQLite3 Driver

libaprutil1-dbg/xenial 1.5.4-1build1 amd64
  Apache Portable Runtime Utility Library - Debugging Symbols

libaprutil1-dev/xenial 1.5.4-1build1 amd64
  Apache Portable Runtime Utility Library - Development Headers

libaprutil1-ldap/xenial,now 1.5.4-1build1 amd64 [installed,automatic]
  Apache Portable Runtime Utility Library - LDAP Driver

libauthen-htpasswd-perl/xenial,xenial 0.171-1 all
  Perl module to read and modify Apache .htpasswd files

libavcodec-ffmpeg-extra56/xenial 7:2.8.6-1ubuntu2 amd64
  FFmpeg library with additional de/encoders for audio/video codecs

libavro-compiler-java/xenial,xenial 1.7.7-1 all
  Apache Avro compiler for Java

libavro-java/xenial,xenial 1.7.7-1 all
  Apache Avro data serialization system

libavro-maven-plugin-java/xenial,xenial 1.7.7-1 all
  Apache Avro Maven plugin

libaxiom-java/xenial,xenial 1.2.8-1fakesync1 all
  Apache AXIOM Java library (AXIs Object Model)

libaxis-java/xenial,xenial 1.4-24 all
  SOAP implementation in Java

libaxis-java-doc/xenial,xenial 1.4-24 all
  SOAP implementation in Java (documentation)

libbatik-java/xenial,xenial 1.8-3ubuntu1 all
  xml.apache.org SVG Library

libbsf-java/xenial,xenial 1:2.4.0-5build1 all
  Bean Scripting Framework to support scripting languages in Java

libbsf-java-doc/xenial,xenial 1:2.4.0-5build1 all
  Bean Scripting Framework to support scripting - documentation

libcatalyst-engine-apache-perl/xenial,xenial 1.16-1 all
  Catalyst engine for Apache 1.x and 2.x

libcgi-compress-gzip-perl/xenial,xenial 1.03-2 all
  module to allow automatically compressed CGI output

libcgi-expand-perl/xenial,xenial 2.05-4 all
  convert flat hash to nested data using TT2's dot convention

libcgi-ssi-parser-perl/xenial,xenial 0.01-1.1 all
  used in CGI scripts for parsing SSI directives

libcgi-ssi-perl/xenial,xenial 0.92-5 all
  Perl module to use SSI from CGI scripts

libclucene-contribs1v5/xenial,now 2.3.3.4-4.1 amd64 [installed,automatic]
  language specific text analyzers (runtime)

libclucene-core1v5/xenial,now 2.3.3.4-4.1 amd64 [installed,automatic]
  core library for full-featured text search engine (runtime)

libclucene-dev/xenial 2.3.3.4-4.1 amd64
  library for full-featured text search engine (development)

libcommons-attributes-java/xenial,xenial 2.2-8 all
  adds C#/.Net-style attributes to Java code

libcommons-attributes-java-doc/xenial,xenial 2.2-8 all
  adds C#/.Net-style attributes to Java code - documentation

libcommons-beanutils-java/xenial,xenial 1.9.2-3 all
  Apache Commons BeanUtils - Utility for manipulating Java beans

libcommons-beanutils-java-doc/xenial,xenial 1.9.2-3 all
  Apache Commons BeanUtils - Documentation

libcommons-cli-java/xenial,xenial 1.3.1-3ubuntu1 all
  Command line arguments and options parsing library

libcommons-codec-java/xenial,xenial 1.10-1 all
  encoder and decoders such as Base64 and hexadecimal codec

libcommons-codec-java-doc/xenial,xenial 1.10-1 all
  encoder and decoders such as Base64 and hexadecimal codec - documentation

libcommons-collections3-java/xenial,xenial 3.2.2-1 all
  Apache Commons Collections - Extended Collections API for Java

libcommons-collections4-java/xenial,xenial 4.1-1 all
  Apache Commons Collections - Extended Collections API for Java

libcommons-compress-java/xenial,xenial 1.10-2 all
  Java API for working with compression and archive formats

libcommons-csv-java/xenial,xenial 1.2-1 all
  Library for reading and writing CSV files

libcommons-csv-java-doc/xenial,xenial 1.2-1 all
  Library for reading and writing CSV files (documentation)

libcommons-daemon-java/xenial,xenial 1.0.15-6 all
  Library to launch Java applications as daemons

libcommons-dbcp-java/xenial,xenial 1.4-5ubuntu2 all
  Database Connection Pooling Services

libcommons-dbcp-java-doc/xenial,xenial 1.4-5ubuntu2 all
  Database Connection Pooling Services - documentation

libcommons-jcs-java/xenial,xenial 2.0~beta1-1 all
  Apache Commons JCS - Java Caching System

libcommons-jexl2-java/xenial,xenial 2.1.1-3 all
  Apache Commons JEXL - Java Expression Language

libcommons-jexl2-java-doc/xenial,xenial 2.1.1-3 all
  Documentation for Apache Commons JEXL

libcommons-jxpath-java/xenial,xenial 1.3-8 all
  Apache Commons JXPath - XPath expressions applied to Java objects

libcommons-lang3-java/xenial,xenial 3.4-1 all
  Extension of the java.lang package (for Java 5+)

libcommons-lang3-java-doc/xenial,xenial 3.4-1 all
  Documentation for extension of the java.lang package (for Java 5+)

libcommons-launcher-java/xenial,xenial 1.1-8 all
  Apache Commons Launcher - Cross platform Java application launcher

libcommons-math-java/xenial,xenial 2.2-5 all
  Java lightweight mathematics and statistics components

libcommons-math-java-doc/xenial,xenial 2.2-5 all
  Java lightweight mathematics and statistics components - documentation

libcommons-math3-java/xenial,xenial 3.6-2 all
  Java lightweight mathematics and statistics components

libcommons-math3-java-doc/xenial,xenial 3.6-2 all
  Java lightweight mathematics and statistics components - documentation

libcommons-modeler-java/xenial,xenial 2.0.1-7 all
  convenience library to use Java Management Extensions (JMX)

libcommons-modeler-java-doc/xenial,xenial 2.0.1-7 all
  documentation and examples for Commons Modeler

libcommons-net-java/xenial,xenial 3.4-2ubuntu2 all
  Apache Commons Net - Java client API for basic Internet protocols

libcommons-net-java-doc/xenial,xenial 3.4-2ubuntu2 all
  Apache Commons Net (API documentation)

libcommons-net2-java/xenial,xenial 2.2-2 all
  internet protocol suite Java library

libcommons-net2-java-doc/xenial,xenial 2.2-2 all
  internet protocol suite Java library - API docs

libcommons-parent-java/xenial,xenial 39-3 all
  Maven metadata for Apache Commons project

libcommons-pool2-java/xenial,xenial 2.4.2-1 all
  Apache Commons Pool 2 - Pooling implementation for Java objects

libcommons-vfs-java/xenial,xenial 2.0-7ubuntu1 all
  Java API for accessing various filesystems

libcommons-vfs-java-doc/xenial,xenial 2.0-7ubuntu1 all
  Java API for accessing various filesystems - documentation

libconfig-any-perl/xenial,xenial 0.26-1 all
  module to load configuration from different file formats

libconfig-apacheformat-perl/xenial,xenial 1.2-4 all
  use Apache format config files

libconfig-find-perl/xenial,xenial 0.31-1 all
  module to search configuration files using OS dependent heuristics

libconfig-general-perl/xenial,xenial 2.60-1 all
  generic configuration module

libcurator-client-java/xenial,xenial 2.7.1-1 all
  Apache Curator Client

libcurator-discovery-java/xenial,xenial 2.7.1-1 all
  Apache Curator Service Discovery

libcurator-framework-java/xenial,xenial 2.7.1-1 all
  Apache Curator Framework

libcurator-parent-java/xenial,xenial 2.7.1-1 all
  Apache Curator Parent

libcurator-recipes-java/xenial,xenial 2.7.1-1 all
  Apache Curator Recipes

libcurator-test-java/xenial,xenial 2.7.1-1 all
  Apache Curator Testing Utilities

libdaemon-generic-perl/xenial,xenial 0.84-1 all
  framework to provide start/stop/reload for a daemon

libderby-java/xenial,xenial 10.10.2.0-1 all
  Apache Derby Database Engine and Embedded JDBC Driver

libderbyclient-java/xenial,xenial 10.10.2.0-1 all
  Apache Derby Client JDBC Driver

libdotconf-dev/xenial 1.3-0.2 amd64
  Configuration file parser library - development files

libdotconf0/xenial,now 1.3-0.2 amd64 [installed,automatic]
  Configuration file parser library - runtime files

libdotconf0-dbg/xenial 1.3-0.2 amd64
  Configuration file parser library - debugging symbols

libembperl-perl/xenial 2.5.0-6 amd64
  system for building dynamic websites with Perl

libfelix-gogo-command-java/xenial,xenial 0.14.0-2 all
  Apache Felix Gogo Command bundle

libfelix-gogo-command-java-doc/xenial,xenial 0.14.0-2 all
  Documentation for Apache Felix Gogo Command bundle

libfelix-gogo-runtime-java/xenial,xenial 0.16.2-1 all
  Apache Felix Gogo Runtime bundle

libfelix-gogo-runtime-java-doc/xenial,xenial 0.16.2-1 all
  Documentation for Apache Felix Gogo Runtime bundle

libfelix-gogo-shell-java/xenial,xenial 0.12.0-1 all
  Apache Felix Gogo Shell bundle

libfelix-gogo-shell-java-doc/xenial,xenial 0.12.0-1 all
  Documentation for Apache Felix Gogo Shell bundle

libfelix-osgi-obr-java/xenial,xenial 1.0.2-3fakesync1 all
  OSGi OBR Service API

libfelix-osgi-obr-java-doc/xenial,xenial 1.0.2-3fakesync1 all
  Javadoc API for OSGi OBR Service API

libfelix-shell-java/xenial,xenial 1.4.3-1 all
  Felix OSGi shell to issue commands to the framework

libfelix-shell-tui-java/xenial,xenial 1.4.1-3 all
  Apache Felix Shell TUI

libfelix-shell-tui-java-doc/xenial,xenial 1.4.1-3 all
  Documentation for Apache Felix Shell TUI

libfelix-utils-java/xenial,xenial 1.6.0-1 all
  collection of utility classes for Apache Felix

libfelix-utils-java-doc/xenial,xenial 1.6.0-1 all
  collection of utility classes for Apache Felix - documentation

libfile-listing-perl/xenial,xenial,now 6.04-1 all [installed,automatic]
  module to parse directory listings

libfile-mmagic-perl/xenial,xenial 1.30-1 all
  Perl module to guess file type

libfile-mmagic-xs-perl/xenial 0.09008-2build1 amd64
  Perl module to guess file type (à la mod_mime_magic)

libfontbox-java/xenial,xenial 1:1.8.11+dfsg-1 all
  Java font library

libfontbox-java-doc/xenial,xenial 1:1.8.11+dfsg-1 all
  Java font library (Documentation)

libfpm-helper0/xenial 4.2-2build1 amd64
  ASP.NET backend for FastCGI Process Manager - helper lib

libgeronimo-concurrent-1.0-spec-java/xenial,xenial 1.0~alpha-1-1 all
  Apache Geronimo Concurrency Utilities for Java EE API

libgeronimo-ejb-3.2-spec-java/xenial,xenial 1.0~alpha-1-1 all
  Apache Geronimo EJB 3.2 API

libgeronimo-interceptor-3.0-spec-java/xenial,xenial 1.0.1-3fakesync1 all
  Geronimo API implementation of the Interceptor 3.0 spec

libgeronimo-jcache-1.0-spec-java/xenial,xenial 1.0~alpha-1-1 all
  Apache Geronimo JCache 1.0 API

libgeronimo-jpa-2.0-spec-java/xenial,xenial 1.1-2 all
  Geronimo JSR-317 Java Persistence (JPA) 2.0 Spec API

libgeronimo-jpa-2.0-spec-java-doc/xenial,xenial 1.1-2 all
  Documentation for libgeronimo-jpa-2.0-spec-java

libgeronimo-jta-1.2-spec-java/xenial,xenial 1.0~alpha-1-1 all
  Apache Geronimo JTA 1.2 API

libgeronimo-validation-1.0-spec-java/xenial,xenial 1.1-2 all
  Geronimo JSR-303 Bean Validation Spec API

libgeronimo-validation-1.0-spec-java-doc/xenial,xenial 1.1-2 all
  Documentation for libgeronimo-validation-1.0-spec-java

libgraxxia-java/xenial,xenial 1.0~20150714-1 all
  Wrappers for doing Mathematics in Groovy

libgridsite-dev/xenial 2.2.6-1build1 amd64
  Developers tools for gridsite

libgridsite2/xenial 2.2.6-1build1 amd64
  Run time libraries for mod_gridsite and gridsite-clients

libhtml-lint-perl/xenial,xenial 2.22+dfsg-1 all
  checker of HTML errors in strings or files

libicap-dev/xenial 1.0.0-2 amd64
  ICAP server (RFC 3507) implementation in C++ (development files)

libicap1/xenial 1.0.0-2 amd64
  ICAP server (RFC 3507) implementation in C++ (library files)

libicap1-dbg/xenial 1.0.0-2 amd64
  ICAP server (RFC 3507) implementation in C++ (library debug symbols)

libiconv-hook1/xenial 0.0.20021209-10ubuntu2 amd64
  extension of iconv for libapache-mod-encoding

libjackrabbit-java/xenial,xenial 2.10.1-2 all
  content repository implementation (JCR API)

libjakarta-taglibs-standard-java/xenial,xenial 1.1.2-4 all
  Implementation of JSP Standard Tag Library (JSTL)

libjaxp1.3-java/xenial,xenial 1.3.05-2ubuntu3 all
  Java XML parser and transformer APIs (DOM, SAX, JAXP, TrAX)

libjaxp1.3-java-gcj/xenial 1.3.05-2ubuntu3 amd64
  Java XML parser and transformer APIs (DOM, SAX, JAXP, TrAX) - GCJ

libjbzip2-java/xenial,xenial 0.9.1-3 all
  bzip2 compression/decompression library

libjempbox-java/xenial,xenial 1:1.8.11+dfsg-1 all
  XMP Compatible Java Library

libjempbox-java-doc/xenial,xenial 1:1.8.11+dfsg-1 all
  XMP Compatible Java Library (documentation)

libjenkins-commons-jelly-java/xenial,xenial 1.1-jenkins-20120928-1 all
  Jenkins fork of Apache Commons Jelly

libjettison-java/xenial,xenial 1.2-3 all
  collection of StAX parsers and writers for JSON

libjeuclid-core-java/xenial,xenial 3.1.9-3 all
  Complete MathML rendering solution (java classes)

libjeuclid-fop-java/xenial,xenial 3.1.9-3 all
  Complete MathML rendering solution (fop plugin)

libjglobus-axisg-java/xenial,xenial 2.1.0-3 all
  Globus Java - Apache AXIS support

libjs-jquery-jush/xenial,xenial 10-2ubuntu2 all
  jQuery Syntax Highlighter

libkinosearch1-perl/xenial 1.01-3build1 amd64
  Perl library providing search engine features

liblemonldap-ng-common-perl/xenial,xenial 1.4.6-3 all
  Lemonldap::NG common files

liblemonldap-ng-handler-perl/xenial,xenial 1.4.6-3 all
  Lemonldap::NG Apache handler part

liblemonldap-ng-manager-perl/xenial,xenial 1.4.6-3 all
  Lemonldap::NG manager part

liblemonldap-ng-portal-perl/xenial,xenial 1.4.6-3 all
  Lemonldap::NG authentication portal part

liblinux-pid-perl/xenial 0.04-1build2 amd64
  wrapper around the getpid() and getppid() C functions

liblog-log4perl-perl/xenial,xenial 1.44-1ubuntu1 all
  Perl port of the widely popular log4j logging package

liblog4ada-dbg/xenial 1.2-5 amd64
  Ada library for flexible logging (debug)

liblog4ada-doc/xenial,xenial 1.2-5 all
  Ada library for flexible logging (documentation)

liblog4ada1/xenial 1.2-5 amd64
  Ada library for flexible logging (runtime)

liblog4ada2-dev/xenial 1.2-5 amd64
  Ada library for flexible logging (development)

liblog4c-dev/xenial 1.2.1-3 amd64
  C library for flexible logging (development)

liblog4c-doc/xenial,xenial 1.2.1-3 all
  C library for flexible logging (documentation)

liblog4c3/xenial 1.2.1-3 amd64
  C library for flexible logging (runtime)

liblog4cpp-doc/xenial,xenial 1.0-1 all
  A C++ library for flexible logging (documentation)

liblog4cpp5-dev/xenial 1.0-4.1 amd64
  C++ library for flexible logging (development)

liblog4cpp5v5/xenial 1.0-4.1 amd64
  C++ library for flexible logging (runtime)

liblog4j-extras1.2-java/xenial,xenial 1.2.17-1 all
  Extras for Apache log4j

liblog4j-extras1.2-java-doc/xenial,xenial 1.2.17-1 all
  Documentation for Extras for Apache log4j.

liblog4j1.2-java-doc/xenial,xenial 1.2.17-7ubuntu1 all
  Documentation for liblog4j1.2-java

liblog4j2-java/xenial,xenial 2.4-2 all
  Apache Log4j - Logging Framework for Java

liblog4j2-java-doc/xenial,xenial 2.4-2 all
  Documentation for Apache Log4j 2

liblog4net-cil-dev/xenial,xenial 1.2.10+dfsg-7 all
  highly configurable logging API for the CLI

liblog4net1.2-cil/xenial,xenial 1.2.10+dfsg-7 all
  highly configurable logging API for the CLI

liblog4tango5-dev/xenial 8.1.2c+dfsg-7ubuntu3 amd64
  logging for TANGO - development library

liblog4tango5-doc/xenial,xenial 8.1.2c+dfsg-7ubuntu3 all
  logging for TANGO - documentation

liblog4tango5v5/xenial 8.1.2c+dfsg-7ubuntu3 amd64
  logging for TANGO - shared library

liblog4tango5v5-dbg/xenial 8.1.2c+dfsg-7ubuntu3 amd64
  logging for TANGO - debug library

liblucy-perl/xenial 0.3.3-6build1 amd64
  search engine library

libmasonx-request-withapachesession-perl/xenial,xenial 0.31-1 all
  Session handler in the Mason Request object

libmaven-indexer-java/xenial,xenial 5.1.1-4 all
  Maven :: Indexer

libmaven-parent-java/xenial,xenial 21-2 all
  Maven metadata for Apache Maven itself

libmavibot-java/xenial,xenial 1.0.0~M1-1 all
  Apache Mavibot - MVCC BTree Java Implementation

libmemcache-dev/xenial 1.4.0.rc2-1.1 amd64
  development headers for libmemcache C client API

libmemcache0/xenial 1.4.0.rc2-1.1 amd64
  C client API for memcached memory object caching system

libmina-java/xenial,xenial 1.1.7.dfsg-11 all
  Java network application framework

libmina-java-doc/xenial,xenial 1.1.7.dfsg-11 all
  Java network application framework - documentation

libmina2-java/xenial,xenial 2.0.9-2 all
  Java network application framework

libmina2-java-doc/xenial,xenial 2.0.9-2 all
  Java network application framework - documentation

libmodule-refresh-perl/xenial,xenial 0.17-1 all
  tool to refresh %INC files when updated on disk

libnet-server-perl/xenial,xenial 2.008-2 all
  extensible, general perl server engine

libnet-stomp-perl/xenial,xenial 0.56-1 all
  Perl module providing a Streaming Text Orientated Messaging Protocol client

libnetsds-perl/xenial,xenial 1.301-3 all
  Service Delivery Suite framework

libnetty-tcnative-java/xenial,xenial 1.1.33.Fork14-1 all
  Tomcat native fork for Netty

libnetty-tcnative-jni/xenial 1.1.33.Fork14-1 amd64
  Tomcat native fork for Netty (JNI library)

libnot-yet-commons-ssl-java/xenial,xenial 0.3.15-1 all
  Not-yet-commons-SSL is a library to make SSL in Java easier

libnot-yet-commons-ssl-java-doc/xenial,xenial 0.3.15-1 all
  Documentation for Not-yet-commons-SSL

liboauth-signpost-java/xenial,xenial 1.2.1.2-1.3 all
  simple OAuth message signing for Java

libocamlnet-ocaml-dev/xenial 4.0.4-1build3 amd64
  OCaml application-level Internet libraries - core development libraries

libopenjpa-java/xenial,xenial 2.4.0-2 all
  Java Persistence 2.0 API (JPA) implementation library

libopenjpa-java-doc/xenial,xenial 2.4.0-2 all
  Documentation for libopenjpa-java

libpdfbox-java/xenial,xenial 1:1.8.11+dfsg-1 all
  PDF library for Java

libpdfbox-java-doc/xenial,xenial 1:1.8.11+dfsg-1 all
  PDF library for Java (documentation)

libpion-5.0/xenial 5.0.6+dfsg-1build1 amd64
  lightweight HTTP interface library - runtime files

libpion-5.0-dbg/xenial 5.0.6+dfsg-1build1 amd64
  lightweight HTTP interface library - debug files

libpion-common-4.0/xenial 4.0.7+dfsg-3.1ubuntu4 amd64
  lightweight HTTP interface library - common runtime files

libpion-common-4.0-dbg/xenial 4.0.7+dfsg-3.1ubuntu4 amd64
  lightweight HTTP interface library - common debug files

libpion-common-dev/xenial 4.0.7+dfsg-3.1ubuntu4 amd64
  lightweight HTTP interface library - common development files

libpion-dev/xenial 5.0.6+dfsg-1build1 amd64
  lightweight HTTP interface library - development files

libpion-doc/xenial,xenial 5.0.6+dfsg-1build1 all
  lightweight HTTP interface library - documentation

libpion-net-4.0/xenial 4.0.7+dfsg-3.1ubuntu4 amd64
  lightweight HTTP interface library - runtime files

libpion-net-4.0-dbg/xenial 4.0.7+dfsg-3.1ubuntu4 amd64
  lightweight HTTP interface library - debug files

libpion-net-dev/xenial 4.0.7+dfsg-3.1ubuntu4 amd64
  lightweight HTTP interface library - development files

libpion-net-doc/xenial,xenial 4.0.7+dfsg-3.1ubuntu4 all
  lightweight HTTP interface library - documentation

libpion-net-plugins/xenial 4.0.7+dfsg-3.1ubuntu4 amd64
  lightweight HTTP interface library - plugins

libpion-net-plugins-dbg/xenial 4.0.7+dfsg-3.1ubuntu4 amd64
  lightweight HTTP interface library - plugins debug files

libpion-plugins/xenial 5.0.6+dfsg-1build1 amd64
  lightweight HTTP interface library - plugins

libpion-plugins-dbg/xenial 5.0.6+dfsg-1build1 amd64
  lightweight HTTP interface library - plugins debug files

libplack-middleware-expires-perl/xenial,xenial 0.06-1 all
  mod_expires for plack

libplexus-io-java/xenial,xenial 1.0~alpha5-2 all
  Plexus IO Components

libplucene-perl/xenial,xenial 1.25-3 all
  Perl port of the Lucene search engine

libpoe-component-server-http-perl/xenial,xenial 0.09-2 all
  foundation of a POE HTTP Daemon

libportlet-api-2.0-spec-java/xenial,xenial 1.0-2 all
  Java Portlet Specification V2.0

libportlet-api-2.0-spec-java-doc/xenial,xenial 1.0-2 all
  Java Portlet Specification V2.0 - documentation

libqmf-dev/xenial 0.16-9ubuntu2 amd64
  enterprise messaging system - QMF development files

libqmf1/xenial 0.16-9ubuntu2 amd64
  enterprise messaging system - QMF libraries

libqmf2-1/xenial 0.16-9ubuntu2 amd64
  enterprise messaging system - QMF2 libraries

libqmf2-dev/xenial 0.16-9ubuntu2 amd64
  enterprise messaging system - QMF2 development files

libqmfconsole2/xenial 0.16-9ubuntu2 amd64
  enterprise messaging system - QMF console library

libqmfconsole2-dev/xenial 0.16-9ubuntu2 amd64
  enterprise messaging system - QMF console development files

libqmfengine1/xenial 0.16-9ubuntu2 amd64
  enterprise messaging system - QMF engine libraries

libqmfengine1-dev/xenial 0.16-9ubuntu2 amd64
  enterprise messaging system - QMF engine development files

libqpid-perl/xenial 0.16-9ubuntu2 amd64
  enterprise messaging system - Perl bindings

libqpidbroker2/xenial 0.16-9ubuntu2 amd64
  enterprise messaging system - broker libraries

libqpidbroker2-dev/xenial 0.16-9ubuntu2 amd64
  enterprise messaging system - broker development files

libqpidclient2/xenial 0.16-9ubuntu2 amd64
  enterprise messaging system - client libraries

libqpidclient2-dev/xenial 0.16-9ubuntu2 amd64
  enterprise messaging system - client development files

libqpidcommon2/xenial 0.16-9ubuntu2 amd64
  enterprise messaging system - common libraries

libqpidcommon2-dev/xenial 0.16-9ubuntu2 amd64
  enterprise messaging system - common development files

libqpidmessaging2/xenial 0.16-9ubuntu2 amd64
  enterprise messaging system - AMQP messaging libraries

libqpidmessaging2-dev/xenial 0.16-9ubuntu2 amd64
  enterprise messaging system - AMQP messaging development files

libqpidtypes1/xenial 0.16-9ubuntu2 amd64
  enterprise messaging system - API libraries

libqpidtypes1-dev/xenial 0.16-9ubuntu2 amd64
  enterprise messaging system - API development files

librdkafka-dev/xenial 0.8.6-1.1 amd64
  library implementing the Apache Kafka protocol (development headers)

librdkafka1/xenial 0.8.6-1.1 amd64
  library implementing the Apache Kafka protocol

librdkafka1-dbg/xenial 0.8.6-1.1 amd64
  library implementing the Apache Kafka protocol (debugging symbols)

librdmawrap2/xenial 0.16-9ubuntu2 amd64
  enterprise messaging system - RDMA libraries

librdmawrap2-dev/xenial 0.16-9ubuntu2 amd64
  enterprise messaging system - RDMA development files

libreverseproxy-formfiller-perl/xenial,xenial 0.5-1 all
  ModPerl module to fill and submit any html form

librose-uri-perl/xenial,xenial 1.00-1 all
  module for an easy  manipulation of URI components

librpc-xml-perl/xenial,xenial 0.79-1 all
  Perl implementation of the XML-RPC protocol

librunapp-perl/xenial,xenial 0.13-2 all
  generic module to run web-applications

libserf-1-1/xenial 1.3.8-1 amd64
  high-performance asynchronous HTTP client library

libserf-dev/xenial 1.3.8-1 amd64
  high-performance asynchronous HTTP client library headers

libserf1-dbg/xenial 1.3.8-1 amd64
  high-performance asynchronous HTTP client library debugging symbols

libservlet2.5-java/xenial,xenial 6.0.45+dfsg-1 all
  Servlet 2.5 and JSP 2.1 Java API classes

libservlet2.5-java-doc/xenial,xenial 6.0.45+dfsg-1 all
  Servlet 2.5 and JSP 2.1 Java API documentation

libservlet3.0-java/xenial,xenial 7.0.68-1 all
  Servlet 3.0 and JSP 2.2 Java API classes

libservlet3.0-java-doc/xenial,xenial 7.0.68-1 all
  Servlet 3.0 and JSP 2.2 Java API documentation

libservlet3.1-java/xenial,xenial 8.0.32-1ubuntu1 all
  Servlet 3.1, JSP 2.3, EL 3.0 and WebSocket 1.0 Java API classes

libservlet3.1-java-doc/xenial,xenial 8.0.32-1ubuntu1 all
  Servlet 3.1, JSP 2.3, EL 3.0 and WebSocket 1.0 Java API documentation

libshiro-java/xenial,xenial 1.2.4-1 all
  Apache Shiro - Java Security Framework

libslf4j-java/xenial,xenial 1.7.14-3 all
  Simple Logging Facade for Java

libsslcommon2/xenial 0.16-9ubuntu2 amd64
  enterprise messaging system - common SSL libraries

libsslcommon2-dev/xenial 0.16-9ubuntu2 amd64
  enterprise messaging system - common SSL development files

libsvn-dev/xenial 1.9.3-2ubuntu1 amd64
  Development files for Apache Subversion libraries

libsvn-doc/xenial,xenial 1.9.3-2ubuntu1 all
  Developer documentation for libsvn

libsvn-java/xenial 1.9.3-2ubuntu1 amd64
  Java bindings for Apache Subversion

libsvn-perl/xenial 1.9.3-2ubuntu1 amd64
  Perl bindings for Apache Subversion

libsvn-ruby1.8/xenial,xenial 1.9.3-2ubuntu1 all
  Ruby bindings for Apache Subversion (dummy package)

libsvn1/xenial 1.9.3-2ubuntu1 amd64
  Shared libraries used by Apache Subversion

libtcnative-1/xenial 1.1.33-1 amd64
  Tomcat native library using the Apache Portable Runtime

libtest-aggregate-perl/xenial,xenial 0.372-2 all
  module for aggregating tests to make them run faster

libtie-dxhash-perl/xenial,xenial 1.05-2 all
  Perl module that keeps insertion order in hash

libtika-java/xenial,xenial 1.5-4 all
  Apache Tika - content analysis toolkit

libtiles-java/xenial,xenial 2.2.2-6 all
  Java templating framework for web application user interfaces

libtiles-java-doc/xenial,xenial 2.2.2-6 all
  Java templating framework for web application user interfaces - documentation

libtomcat7-java/xenial,xenial 7.0.68-1 all
  Servlet and JSP engine -- core libraries

libtomcat8-java/xenial,xenial 8.0.32-1ubuntu1 all
  Apache Tomcat 8 - Servlet and JSP engine -- core libraries

libtools-logging-clojure/xenial,xenial 0.2.3-4 all
  Logging macros for Clojure

libuima-adapter-soap-java/xenial,xenial 2.8.1-1 all
  Library to provide SOAP web services within UIMA

libuima-adapter-vinci-java/xenial,xenial 2.8.1-1 all
  Library to provide Vinci web services within UIMA

libuima-addons-java/xenial,xenial 2.3.1-4 all
  Apache UIMA Addons

libuima-addons-java-doc/xenial,xenial 2.3.1-4 all
  Documentation for Apache UIMA Addons

libuima-as-java/xenial,xenial 2.3.1-4 all
  Apache UIMA Asynch Scaleout framework

libuima-as-java-doc/xenial,xenial 2.3.1-4 all
  Documentation for Apache UIMA Asynch Scaleout framework

libuima-core-java/xenial,xenial 2.8.1-1 all
  Core library for the UIMA framework

libuima-cpe-java/xenial,xenial 2.8.1-1 all
  Library for the UIMA Collection Processing Engine

libuima-document-annotation-java/xenial,xenial 2.8.1-1 all
  Library for the UIMA document annotation

libuima-tools-java/xenial,xenial 2.8.1-1 all
  UIMA library for the UIMA tools

libuima-vinci-java/xenial,xenial 2.8.1-1 all
  Library to handle Vinci web service protocol

libwcat1/xenial 1.1-1 amd64
  Process monitoring library

libwcat1-dev/xenial 1.1-1 amd64
  Process monitoring library

libweb-id-perl/xenial,xenial 1.927-1 all
  implementation of WebID (a.k.a. FOAF+SSL)

libwinpr-asn1-0.1/xenial 1.1.0~git20140921.1.440916e+dfsg1-5ubuntu1 amd64
  Windows Portable Runtime library (ASN1 library)

libwinpr-bcrypt0.1/xenial 1.1.0~git20140921.1.440916e+dfsg1-5ubuntu1 amd64
  Windows Portable Runtime library (bcrypt library)

libwinpr-credentials0.1/xenial 1.1.0~git20140921.1.440916e+dfsg1-5ubuntu1 amd64
  Windows Portable Runtime library (credentials library)

libwinpr-credui0.1/xenial 1.1.0~git20140921.1.440916e+dfsg1-5ubuntu1 amd64
  Windows Portable Runtime library (credeui library)

libwinpr-crt0.1/xenial,now 1.1.0~git20140921.1.440916e+dfsg1-5ubuntu1 amd64 [installed,automatic]
  Windows Portable Runtime library (crt library)

libwinpr-crypto0.1/xenial 1.1.0~git20140921.1.440916e+dfsg1-5ubuntu1 amd64
  Windows Portable Runtime library (crypto library)

libwinpr-dbg/xenial 1.1.0~git20140921.1.440916e+dfsg1-5ubuntu1 amd64
  Windows Portable Runtime library (debug symbols)

libwinpr-dev/xenial 1.1.0~git20140921.1.440916e+dfsg1-5ubuntu1 amd64
  Windows Portable Runtime library (development files)

libwinpr-dsparse0.1/xenial,now 1.1.0~git20140921.1.440916e+dfsg1-5ubuntu1 amd64 [installed,automatic]
  Windows Portable Runtime library (dsparse library)

libwinpr-environment0.1/xenial,now 1.1.0~git20140921.1.440916e+dfsg1-5ubuntu1 amd64 [installed,automatic]
  Windows Portable Runtime library (environment library)

libwinpr-error0.1/xenial 1.1.0~git20140921.1.440916e+dfsg1-5ubuntu1 amd64
  Windows Portable Runtime library (error library)

libwinpr-file0.1/xenial,now 1.1.0~git20140921.1.440916e+dfsg1-5ubuntu1 amd64 [installed,automatic]
  Windows Portable Runtime library (file library)

libwinpr-handle0.1/xenial,now 1.1.0~git20140921.1.440916e+dfsg1-5ubuntu1 amd64 [installed,automatic]
  Windows Portable Runtime library (handle library)

libwinpr-heap0.1/xenial,now 1.1.0~git20140921.1.440916e+dfsg1-5ubuntu1 amd64 [installed,automatic]
  Windows Portable Runtime library (heap library)

libwinpr-input0.1/xenial,now 1.1.0~git20140921.1.440916e+dfsg1-5ubuntu1 amd64 [installed,automatic]
  Windows Portable Runtime library (input library)

libwinpr-interlocked0.1/xenial,now 1.1.0~git20140921.1.440916e+dfsg1-5ubuntu1 amd64 [installed,automatic]
  Windows Portable Runtime library (interlocked library)

libwinpr-io0.1/xenial 1.1.0~git20140921.1.440916e+dfsg1-5ubuntu1 amd64
  Windows Portable Runtime library (io library)

libwinpr-library0.1/xenial,now 1.1.0~git20140921.1.440916e+dfsg1-5ubuntu1 amd64 [installed,automatic]
  Windows Portable Runtime library (library)

libwinpr-path0.1/xenial,now 1.1.0~git20140921.1.440916e+dfsg1-5ubuntu1 amd64 [installed,automatic]
  Windows Portable Runtime library (path library)

libwinpr-pipe0.1/xenial 1.1.0~git20140921.1.440916e+dfsg1-5ubuntu1 amd64
  Windows Portable Runtime library (pipe library)

libwinpr-pool0.1/xenial,now 1.1.0~git20140921.1.440916e+dfsg1-5ubuntu1 amd64 [installed,automatic]
  Windows Portable Runtime library (pool library)

libwinpr-registry0.1/xenial,now 1.1.0~git20140921.1.440916e+dfsg1-5ubuntu1 amd64 [installed,automatic]
  Windows Portable Runtime library (registry library)

libwinpr-rpc0.1/xenial,now 1.1.0~git20140921.1.440916e+dfsg1-5ubuntu1 amd64 [installed,automatic]
  Windows Portable Runtime library (RPC library)

libwinpr-sspi0.1/xenial,now 1.1.0~git20140921.1.440916e+dfsg1-5ubuntu1 amd64 [installed,automatic]
  Windows Portable Runtime library (sspi library)

libwinpr-sspicli0.1/xenial 1.1.0~git20140921.1.440916e+dfsg1-5ubuntu1 amd64
  Windows Portable Runtime library (sspicli library)

libwinpr-synch0.1/xenial,now 1.1.0~git20140921.1.440916e+dfsg1-5ubuntu1 amd64 [installed,automatic]
  Windows Portable Runtime library (synch library)

libwinpr-sysinfo0.1/xenial,now 1.1.0~git20140921.1.440916e+dfsg1-5ubuntu1 amd64 [installed,automatic]
  Windows Portable Runtime library (sysinfo library)

libwinpr-thread0.1/xenial,now 1.1.0~git20140921.1.440916e+dfsg1-5ubuntu1 amd64 [installed,automatic]
  Windows Portable Runtime library (thread library)

libwinpr-timezone0.1/xenial 1.1.0~git20140921.1.440916e+dfsg1-5ubuntu1 amd64
  Windows Portable Runtime library (timezone library)

libwinpr-utils0.1/xenial,now 1.1.0~git20140921.1.440916e+dfsg1-5ubuntu1 amd64 [installed,automatic]
  Windows Portable Runtime library (utils library)

libwinpr-winhttp0.1/xenial 1.1.0~git20140921.1.440916e+dfsg1-5ubuntu1 amd64
  Windows Portable Runtime library (winhttp library)

libwinpr-winsock0.1/xenial 1.1.0~git20140921.1.440916e+dfsg1-5ubuntu1 amd64
  Windows Portable Runtime library (winsock library)

libws-commons-util-java/xenial,xenial 1.0.1-9 all
  Common utilities from the Apache Web Services Project

libwsdl2c-java/xenial,xenial 0.1-4 all
  stripped down axis2 source bundle suitable for running WSDL2C

libwss4j-java/xenial,xenial 1.6.15-2 all
  Apache WSS4J WS-Security implementation

libxalan-c-dev/xenial 1.11-5 amd64
  XSLT processor library for C++ [development]

libxalan-c111/xenial 1.11-5 amd64
  XSLT processor library for C++

libxml-commons-resolver1.1-java/xenial,xenial 1.2-7build1 all
  XML entity and URI resolver library

libxml-commons-resolver1.1-java-doc/xenial,xenial 1.2-7build1 all
  XML entity and URI resolver library -- documentation

libxml-commons-resolver1.1-java-gcj/xenial 1.2-7build1 amd64
  XML entity and URI resolver library -- native library

libxml-security-c-dev/xenial 1.7.3-1 amd64
  C++ library for XML Digital Signatures (development)

libxml-security-c17v5/xenial 1.7.3-1 amd64
  C++ library for XML Digital Signatures (runtime)

libxml-security-java/xenial,xenial 1.5.6-1 all
  Apache Santuario

libxml-security-java-doc/xenial,xenial 1.5.6-1 all
  Documentation for Apache Santuario

libxmlbeans-maven-plugin-java/xenial,xenial 2.3.3-3 all
  Maven XMLBeans Plugin

libxmlbeans-maven-plugin-java-doc/xenial,xenial 2.3.3-3 all
  Documentation for Maven XMLBeans Plugin

libxmlgraphics-commons-java/xenial,xenial 2.1-1ubuntu1 all
  Reusable components used by Batik and FOP

libxmlgraphics-commons-java-doc/xenial,xenial 2.1-1ubuntu1 all
  Reusable components used by Batik and FOP (documentation)

libxmlrpc3-common-java/xenial,xenial 3.1.3-7 all
  XML-RPC implementation in Java

libxmlrpc3-java-doc/xenial,xenial 3.1.3-7 all
  XML-RPC implementation in Java (API documentation)

libxqilla-dev/xenial 2.3.0-3 amd64
  XQuery and XPath 2.0 library - Development files

libxqilla6v5/xenial 2.3.0-3 amd64
  XQuery and XPath 2.0 library

libxslthl-java/xenial,xenial 2.1.3-2 all
  XSLT syntax highlighting

loook/xenial,xenial 0.8.4-1 all
  Search strings in ODF documents

lua-apr/xenial 0.23.2.dfsg-4 amd64
  Apache Portable Runtime library for the Lua language

lua-apr-dev/xenial 0.23.2.dfsg-4 amd64
  Lua development files for the Apache Portable Runtime library

lua-apr-doc/xenial,xenial 0.23.2.dfsg-4 all
  Lua documentation files for the Apache Portable Runtime library

mapcache-cgi/xenial 1.4.0-4 amd64
  tile caching server - CGI binary

mate-user-share/xenial 1.12.0-1 amd64
  User level public file sharing via WebDAV or ObexFTP

mate-user-share-common/xenial,xenial 1.12.0-1 all
  User level public file sharing via WebDAV or ObexFTP (common files)

mate-user-share-dbg/xenial 1.12.0-1 amd64
  User level public file sharing via WebDAV or ObexFTP (debugging symbols)

memcached/xenial 1.4.25-2ubuntu1 amd64
  high-performance memory object caching system

mobyle/xenial,xenial 1.5.3+dfsg-3 all
  Web portal that provides web forms for command-line software

mod-musicindex-common/xenial,xenial 1.4.1-1build1 all
  Common files for mod-musicindex

mono-apache-server/xenial,xenial 4.2-2build1 all
  ASP.NET backend for mod_mono Apache module - default version

mono-apache-server4/xenial,xenial 4.2-2build1 all
  ASP.NET 4.5 backend for mod_mono Apache module

mono-fastcgi-server/xenial,xenial 4.2-2build1 all
  ASP.NET backend for FastCGI webservers - default version

mono-fastcgi-server4/xenial,xenial 4.2-2build1 all
  ASP.NET 4.0 backend for FastCGI webservers

mono-fpm-server/xenial,xenial 4.2-2build1 all
  ASP.NET backend for FastCGI Process Manager

mono-xsp/xenial,xenial 4.2-2build1 all
  simple web server to run ASP.NET applications - default version

mono-xsp4/xenial,xenial 4.2-2build1 all
  simple web server to run ASP.NET 4.0 applications

mono-xsp4-base/xenial,xenial 4.2-2build1 all
  base libraries for XSP 4.0

mrtgutils/xenial 0.8.1ubuntu1 amd64
  Utilities to generate statistics for mrtg

nagios-plugins-contrib/xenial 16.20151226 amd64
  Plugins for nagios compatible monitoring systems

nano/xenial,now 2.5.3-2 amd64 [installed,automatic]
  small, friendly text editor inspired by Pico

nano-tiny/xenial 2.5.3-2 amd64
  small, friendly text editor inspired by Pico - tiny build

openvpn-auth-ldap/xenial 2.0.3-6.1 amd64
  OpenVPN LDAP authentication module

parser3-cgi/xenial 3.4.3-6 amd64
  Parser 3, HTML-embedded scripting language (CGI binary)

passenger-doc/xenial,xenial 5.0.27-2 all
  Rails and Rack support for Apache2 - Documentation

pear-channels/xenial,xenial 0~20141011-1 all
  PEAR channels for various projects

petit/xenial,xenial 1.1.1-1 all
  log analysis tool for syslog, apache and raw log files

phing/xenial,xenial 2.13.0-2ubuntu2 all
  PHP5 project build system based on Apache Ant

php-auth-http/xenial,xenial 2.1.8-1build1 all
  HTTP authentication

php-cgi/xenial,xenial 1:7.0+35ubuntu6 all
  server-side, HTML-embedded scripting language (CGI binary) (default)

php-letodms-lucene/xenial,xenial 1.1.1-1 all
  Document management system - Fulltext search

php-solr/xenial 2.4.0-1 amd64
  PHP extension for communicating with Apache Solr server

php-stomp/xenial 1.0.9-0ubuntu1 amd64
  Streaming Text Oriented Messaging Protocol (STOMP) client module for PHP

php-zend-code/xenial,xenial 3.0.1-1build1 all
  Zend Framework - Code component

php7.0-cgi/xenial 7.0.4-7ubuntu2 amd64
  server-side, HTML-embedded scripting language (CGI binary)

php7.0-fpm/xenial,now 7.0.4-7ubuntu2 amd64 [installed,automatic]
  server-side, HTML-embedded scripting language (FPM-CGI binary)

picviz/xenial 0.5-1build1 amd64
  Parallel coordinates plotter

prayer/xenial 1.3.5-dfsg1-3 amd64
  standalone IMAP-based webmail server

prayer-accountd/xenial 1.3.5-dfsg1-3 amd64
  account management daemon for Prayer

prayer-templates-dev/xenial 1.3.5-dfsg1-3 amd64
  tools for compiling Prayer templates

prayer-templates-src/xenial,xenial 1.3.5-dfsg1-3 all
  templates for customizing Prayer Webmail

prelude-lml/xenial 1.0.0-5.3ubuntu2 amd64
  Security Information Management System [ Log Agent ]

proftpd-basic/xenial 1.3.5a-1build1 amd64
  Versatile, virtual-hosting FTP daemon - binaries

proftpd-dev/xenial 1.3.5a-1build1 amd64
  Versatile, virtual-hosting FTP daemon - development files

proftpd-doc/xenial,xenial 1.3.5a-1build1 all
  Versatile, virtual-hosting FTP daemon - documentation

proftpd-mod-geoip/xenial 1.3.5a-1build1 amd64
  Versatile, virtual-hosting FTP daemon - GeoIP module

proftpd-mod-ldap/xenial 1.3.5a-1build1 amd64
  Versatile, virtual-hosting FTP daemon - LDAP module

proftpd-mod-mysql/xenial 1.3.5a-1build1 amd64
  Versatile, virtual-hosting FTP daemon - MySQL module

proftpd-mod-odbc/xenial 1.3.5a-1build1 amd64
  Versatile, virtual-hosting FTP daemon - ODBC module

proftpd-mod-pgsql/xenial 1.3.5a-1build1 amd64
  Versatile, virtual-hosting FTP daemon - PostgreSQL module

proftpd-mod-sqlite/xenial 1.3.5a-1build1 amd64
  Versatile, virtual-hosting FTP daemon - SQLite3 module

puppet-module-puppetlabs-apache/xenial,xenial 1.6.0-1 all
  Puppet module for apache

puppetmaster-passenger/xenial,xenial 3.8.5-2 all
  configuration management system, scalable master service

pure-ftpd/xenial 1.0.36-3.2build1 amd64
  Secure and efficient FTP server

pure-ftpd-ldap/xenial 1.0.36-3.2build1 amd64
  Secure and efficient FTP server with LDAP user authentication

pure-ftpd-mysql/xenial 1.0.36-3.2build1 amd64
  Secure and efficient FTP server with MySQL user authentication

pure-ftpd-postgresql/xenial 1.0.36-3.2build1 amd64
  Secure and efficient FTP server with PostgreSQL user authentication

pwauth/xenial 2.3.11-0.1 amd64
  authenticator for mod_authnz_external and the Apache HTTP Daemon

pyblosxom/xenial,xenial 1.5.3-2 all
  lightweight file-based weblog system written in Python

pycassa-doc/xenial,xenial 1.11.1-2 all
  Documentation for the Pycassa library

python-apache-openid/xenial,xenial 2.0.1-0ubuntu3 all
  OpenID consumer module for Apache

python-avro/xenial,xenial 1.8.0+dfsg-1 all
  Apache Avro serialization system — Python 2 library

python-cassandra/xenial,xenial 2.5.1-1 all
  Python driver for Apache Cassandra

python-cherrypy3/xenial,xenial 3.5.0-2build1 all
  Python web development framework - version 3

python-cmislib/xenial,xenial 0.5.1+dfsg-2 all
  CMIS client library for Python

python-cmislib-doc/xenial,xenial 0.5.1+dfsg-2 all
  CMIS client library for Python (documentation)

python-couchdb/xenial,xenial 0.10-1.1 all
  library for working with Apache CouchDB

python-cqmf2/xenial 0.16-9ubuntu2 amd64
  enterprise messaging system - Python CQMF2 bindings

python-cqpid/xenial 0.16-9ubuntu2 amd64
  enterprise messaging system - Python CQPID bindings

python-cs/xenial,xenial 0.6.10-1 all
  simple, yet powerful CloudStack API client (Python module)

python-django-downloadview/xenial,xenial 1.8-1 all
  efficient static file serving with Django

python-django-websocket-redis/xenial,xenial 0.4.5-2 all
  Websockets for Django applications using Redis (Python2 version)

python-flask-autoindex/xenial,xenial 0.6-1 all
  automatically generated index pages for Flask applications (Python 2)

python-flask-autoindex-doc/xenial,xenial 0.6-1 all
  automatically generated index pages for Flask applications (documentation)

python-flup/xenial,xenial 1.0.2-5 all
  Implements Python Web Server Gateway Interface (WSGI)

python-happybase/xenial,xenial 0.8-2 all
  developer-friendly Python library to interact with Apache HBase

python-kafka/xenial,xenial 0.9.3-2 all
  Pure Python client for Apache Kafka - Python 2.x

python-kafka-doc/xenial,xenial 0.9.3-2 all
  Pure Python client for Apache Kafka - doc

python-kazoo/xenial,xenial 2.2.1-1ubuntu1 all
  higher level API to Apache Zookeeper (Python 2)

python-kerberos/xenial 1.1.5-2build1 amd64
  GSSAPI interface module - Python 2.x

python-letsencrypt-apache/xenial,xenial 0.4.1-1 all
  Apache plugin for Let's Encrypt

python-letsencrypt-apache-doc/xenial,xenial 0.4.1-1 all
  Apache Let's Encrypt plugin documentation

python-libcloud/xenial,xenial 0.20.0-1 all
  unified Python interface into the cloud

python-logsparser/xenial,xenial 0.4-1 all
  Python library for log parsing, tagging and analysis.

python-mod-pywebsocket/xenial,xenial 0.8-1 all
  WebSocket extension for Apache HTTP Server

python-pycassa/xenial,xenial 1.11.1-2 all
  Client library for Apache Cassandra

python-pycsw/xenial,xenial 1.10.1+dfsg-2 all
  OGC compliant metadata (Catalogue service for the Web) server

python-pycsw-wsgi/xenial,xenial 1.10.1+dfsg-2 all
  WSGI Apache CSW service based on python-pycsw

python-pysolr/xenial,xenial 3.3.3-1 all
  lightweight Python wrapper for querying Apache Solr

python-qmf/xenial 0.16-9ubuntu2 amd64
  enterprise messaging system - Python QMF module

python-qmf2/xenial 0.16-9ubuntu2 amd64
  enterprise messaging system - Python QMF2 bindings

python-retrying/xenial,xenial 1.3.3-1 all
  simplifies the task of adding retry behavior - Python 2.x

python-schema-salad/xenial,xenial 1.6.20160202222448-1 all
  Schema Annotations for Linked Avro Data (SALAD)

python-stompy/xenial,xenial 0.2.9-1.1 all
  Implementation of the STOMP protocol in Python

python-subversion/xenial 1.9.3-2ubuntu1 amd64
  Python bindings for Apache Subversion

python-txzookeeper/xenial,xenial 0.9.8-1 all
  Twisted-based Asynchronous Libraries for Apache Zookeeper.

python-urwid/xenial 1.3.1-2build1 amd64
  curses-based UI/widget library for Python 2

python3-avro/xenial,xenial 1.8.0+dfsg-1 all
  Apache Avro serialization system — Python 3 library

python3-cassandra/xenial,xenial 2.5.1-1 all
  Python driver for Apache Cassandra (Python 3)

python3-cherrypy3/xenial,xenial 3.5.0-2build1 all
  Python 3 web development framework - version 3

python3-cs/xenial,xenial 0.6.10-1 all
  simple, yet powerful CloudStack API client (Python 3 module)

python3-django-downloadview/xenial,xenial 1.8-1 all
  efficient static file serving with Django (Python3 version)

python3-django-websocket-redis/xenial,xenial 0.4.5-2 all
  Websockets for Django applications using Redis (Python3 version)

python3-flask-autoindex/xenial,xenial 0.6-1 all
  automatically generated index pages for Flask applications (Python 3)

python3-kafka/xenial,xenial 0.9.3-2 all
  Pure Python client for Apache Kafka - Python 3.x

python3-kazoo/xenial,xenial 2.2.1-1ubuntu1 all
  higher level API to Apache Zookeeper (Python 3)

python3-kerberos/xenial 1.1.5-2build1 amd64
  GSSAPI interface module - Python 3.x

python3-libcloud/xenial,xenial 0.20.0-1 all
  unified Python interface into the cloud (Python3 version)

python3-pysolr/xenial,xenial 3.3.3-1 all
  lightweight Python wrapper for querying Apache Solr

python3-retrying/xenial,xenial 1.3.3-1 all
  simplifies the task of adding retry behavior - Python 3.x

python3-urwid/xenial 1.3.1-2build1 amd64
  curses-based UI/widget library for Python 3

qmfgen/xenial 0.16-9ubuntu2 amd64
  enterprise messaging system - Python QMF interface generator

qpid-client/xenial 0.16-9ubuntu2 amd64
  enterprise messaging system - AMQP client

qpid-doc/xenial,xenial 0.16-9ubuntu2 all
  enterprise messaging system - documentation and examples

qpidd/xenial 0.16-9ubuntu2 amd64
  enterprise messaging system - AMQP broker

radicale/xenial,xenial 1.1.1-1 all
  simple calendar and addressbook server - daemon

rt4-apache2/xenial,xenial 4.2.12-5 all
  Apache 2 specific files for request-tracker4

rt4-fcgi/xenial,xenial 4.2.12-5 all
  External FastCGI support for request-tracker4

ruby-grack/xenial,xenial 2.0.2-2 all
  Git Smart HTTP Server Rack implementation in Ruby/Rack

ruby-qpid/xenial 0.16-9ubuntu2 amd64
  enterprise messaging system - Ruby bindings

ruby-rack-rewrite/xenial,xenial 1.5.1-1 all
  rack middleware for enforcing rewrite rules

ruby-svn/xenial 1.9.3-2ubuntu1 amd64
  Ruby bindings for Apache Subversion

shibboleth-sp2-common/xenial,xenial 2.5.3+dfsg-2.1build1 all
  Federated web single sign-on system (common files)

shibboleth-sp2-utils/xenial 2.5.3+dfsg-2.1build1 amd64
  Federated web single sign-on system (daemon and utilities)

sipml5-web-phone/xenial,xenial 0.0.20130314.2030-3 all
  WebRTC SIP video-phone - demonstration web page

slowhttptest/xenial 1.6-1 amd64
  application layer Denial of Service attacks simulation tool

smtpprox/xenial,xenial 1.2-1 all
  simple efficient SMTP proxy in perl

snoopy/xenial 2.3.1-2 amd64
  execve() wrapper and logger

subversion/xenial 1.9.3-2ubuntu1 amd64
  Advanced version control system

subversion-dbg/xenial 1.9.3-2ubuntu1 amd64
  Debug symbols for Apache Subversion

subversion-tools/xenial 1.9.3-2ubuntu1 amd64
  Assorted tools related to Apache Subversion

sugarplum/xenial,xenial 0.9.10-18 all
  automated and intelligent spam trap/cache-poisoner

sun-javadb-common/xenial,xenial 10.3.2.1-0ubuntu2 all
  Java DB common files

tomcat7/xenial,xenial 7.0.68-1 all
  Servlet and JSP engine

tomcat7-admin/xenial,xenial 7.0.68-1 all
  Servlet and JSP engine -- admin web applications

tomcat7-common/xenial,xenial 7.0.68-1 all
  Servlet and JSP engine -- common files

tomcat7-docs/xenial,xenial 7.0.68-1 all
  Servlet and JSP engine -- documentation

tomcat7-examples/xenial,xenial 7.0.68-1 all
  Servlet and JSP engine -- example web applications

tomcat7-user/xenial,xenial 7.0.68-1 all
  Servlet and JSP engine -- tools to create user instances

tomcat8/xenial,xenial 8.0.32-1ubuntu1 all
  Apache Tomcat 8 - Servlet and JSP engine

tomcat8-admin/xenial,xenial 8.0.32-1ubuntu1 all
  Apache Tomcat 8 - Servlet and JSP engine -- admin web applications

tomcat8-common/xenial,xenial 8.0.32-1ubuntu1 all
  Apache Tomcat 8 - Servlet and JSP engine -- common files

tomcat8-docs/xenial,xenial 8.0.32-1ubuntu1 all
  Apache Tomcat 8 - Servlet and JSP engine -- documentation

tomcat8-examples/xenial,xenial 8.0.32-1ubuntu1 all
  Apache Tomcat 8 - Servlet and JSP engine -- example web applications

tomcat8-user/xenial,xenial 8.0.32-1ubuntu1 all
  Apache Tomcat 8 - Servlet and JSP engine -- tools to create user instances

trafficserver/xenial 5.3.0-2ubuntu2 amd64
  fast, scalable and extensible HTTP/1.1 compliant caching proxy server

trafficserver-dbg/xenial 5.3.0-2ubuntu2 amd64
  debug symbols for Apache Traffic Server

trafficserver-dev/xenial 5.3.0-2ubuntu2 amd64
  Apache Traffic Server Software Developers Kit (SDK)

trafficserver-experimental-plugins/xenial 5.3.0-2ubuntu2 amd64
  experimental plugins for Apache Traffic Server

uima-doc/xenial,xenial 2.8.1-1 all
  Documentation for the Apache UIMA framework

uima-examples/xenial,xenial 2.8.1-1 all
  Examples of UIMA components

uima-utils/xenial,xenial 2.8.1-1 all
  UIMA tools

viewvc/xenial,xenial 1.1.22-1 all
  web interface for CVS and/or Subversion repositories

vlogger/xenial,xenial 1.3-4 all
  virtual web logfile rotater/parser

watchcatd/xenial 1.2.1-3 amd64
  Process monitoring daemon

web2ldap/xenial,xenial 1.1.43~dfsg-1 all
  Full-featured web-based LDAPv3 client

webauth-tests/xenial,xenial 4.7.0-3build1 all
  Tests for the WebAuth authentication modules

webdruid/xenial 0.5.4-14build1 amd64
  Web server log file analysis tool

webgui/xenial,xenial 7.10.29-3 all
  Content management platform to maintain complex web sites

webgui-l10n-de/xenial,xenial 7.10.29-3 all
  German localization for WebGUI CMS

webgui-l10n-es/xenial,xenial 7.10.29-3 all
  Spanish localization for WebGUI CMS

webgui-l10n-nl/xenial,xenial 7.10.29-3 all
  Dutch localization for WebGUI CMS

wwwconfig-common/xenial,xenial 0.2.2 all
  Debian web auto configuration

x2goplugin-provider/xenial,xenial 4.0.5.1-1 all
  Provide X2Go Plugin via Apache webserver

xalan/xenial 1.11-5 amd64
  XSLT processor utility

xml-security-c-utils/xenial 1.7.3-1 amd64
  C++ library for XML Digital Signatures (utilities)

xqilla/xenial 2.3.0-3 amd64
  XQuery and XPath 2.0 command line interpreter

yasat/xenial,xenial 839-1 all
  simple stupid audit tool

yubikey-ksm/xenial,xenial 1.15-4ubuntu1 all
  Key Storage Module for YubiKey One-Time Password (OTP) tokens

yubikey-val/xenial,xenial 2.33-1ubuntu1 all
  One-Time Password (OTP) validation server for YubiKey tokens

kushal at kushal-VirtualBox:/etc/apache2/mods-available$ sudo apt search php
Sorting... Done
Full Text Search... Done
adminer/xenial,xenial 4.2.1-1ubuntu1 all
  Web-based database administration tool

air-quality-sensor/xenial 0.1.3-1 amd64
  user space driver for AppliedSensor's Indoor Air Monitor

ampache/xenial,xenial 3.6-rzb2779+dfsg-0ubuntu9 all
  web-based audio file management system

ampache-common/xenial,xenial 3.6-rzb2779+dfsg-0ubuntu9 all
  web-based audio file management system common files

ampache-themes/xenial,xenial 3.6.1-2 all
  Themes for Ampache

aolserver4-doc/xenial,xenial 4.5.1-18 all
  AOL web server version 4 - documentation

apertium/xenial 3.4.0~r61013-5 amd64
  Shallow-transfer machine translation engine

bandwidthd/xenial 2.0.1+cvs20090917-9ubuntu1 amd64
  Tracks usage of TCP/IP and builds html files with graphs

bandwidthd-pgsql/xenial 2.0.1+cvs20090917-9ubuntu1 amd64
  Tracks usage of TCP/IP and builds html files with graphs

bluefish/xenial 2.2.7-2 amd64
  advanced Gtk+ text editor for web and software development

cacti/xenial,xenial 0.8.8f+ds1-4ubuntu4 all
  web interface for graphing of monitoring systems

cacti-spine/xenial 0.8.8b-1ubuntu1 amd64
  Multi-Threading poller for cacti

cakephp/xenial,xenial 2.8.0-1 all
  rapid application development framework for PHP

cakephp-scripts/xenial,xenial 2.8.0-1 all
  rapid application development framework for PHP (scripts)

chameleon-cursor-theme/xenial,xenial 0.5-5 all
  modern but not gaudy X11 mouse theme

codelite/xenial 9.1+dfsg-2 amd64
  Powerful and lightweight IDE

codelite-plugins/xenial 9.1+dfsg-2 amd64
  Powerful and lightweight IDE - plugins

coderay/xenial,xenial 1.1.1-1 all
  Helper programs for CodeRay Ruby lib for syntax highlighting

coffeescript/xenial,xenial 1.9.3~dfsg-1 all
  interpreter and compiler for the CoffeeScript language

composer/xenial,xenial 1.0.0~beta2-1 all
  dependency manager for PHP

davical/xenial,xenial 1.1.4-1ubuntu1 all
  PHP CalDAV and CardDAV Server

davical-doc/xenial,xenial 1.1.4-1ubuntu1 all
  PHP CalDAV and CardDAV Server - technical documentation

debpear/xenial,xenial 0.5 all
  automatically builds and installs PEAR package as Debian packages

dh-linktree/xenial,xenial 0.4 all
  Create symlink trees within a Debian package

dh-php/xenial,xenial 0.10 all
  debhelper add-on to handle PHP PECL extensions

dia2code/xenial 0.8.3-4 amd64
  a dia-UML code generator

direnv/xenial 2.7.0-1 amd64
  Utility to set directory specific environment variables

doxygen/xenial 1.8.11-1 amd64
  Documentation system for C, C++, Java, Python and other languages

doxygen-dbg/xenial 1.8.11-1 amd64
  Debug symbols for doxygen

doxygen-doc/xenial,xenial 1.8.11-1 all
  Documentation for doxygen

doxygen-gui/xenial 1.8.11-1 amd64
  GUI configuration tool for doxygen

doxygen-latex/xenial,xenial 1.8.11-1 all
  Documentation system for C, C++, Java, Python and other languages

drush/xenial,xenial 5.10.0-2ubuntu1 all
  command line shell and Unix scripting interface for Drupal

dynalogin-client-php/xenial,xenial 1.0.0-3ubuntu3 all
  two-factor HOTP/TOTP authentication - PHP client

empty-expect/xenial 0.6.19b-1ubuntu1 amd64
  Run processes and applications under pseudo-terminal

erlang-cowboy/xenial 2.0.0~pre.1+dfsg1-1 amd64
  Cowboy is a small, fast and modular HTTP server written in Erlang

erlang-cowboy-doc/xenial,xenial 2.0.0~pre.1+dfsg1-1 all
  Documentation files for erlang-cowboy

erlang-cowboy-examples/xenial,xenial 2.0.0~pre.1+dfsg1-1 all
  Examples for erlang-cowboy

exuberant-ctags/xenial 1:5.9~svn20110310-11 amd64
  build tag file indexes of source code definitions

freeplane/xenial,xenial 1.3.15-3 all
  Java program for working with Mind Maps

fusiondirectory-smarty3-acl-render/xenial,xenial 1.0.8.8-3ubuntu2 all
  Provide FusionDirectory ACL based rendering for Smarty3

gambas3-gb-clipper/xenial 3.8.4-2ubuntu3 amd64
  Gambas Clipper component

ganglia-webfrontend/xenial,xenial 3.6.1-1ubuntu1 all
  cluster monitoring toolkit - web front-end

geany/xenial 1.27-1 amd64
  fast and lightweight IDE

geany-common/xenial,xenial 1.27-1 all
  fast and lightweight IDE -- common files

gir1.2-isocodes-1.2/xenial 1.2.2-1 amd64
  access of iso-codes data and translations - GObject introspection

gosa-plugin-phpgw/xenial,xenial 2.7.4+reloaded2-9ubuntu1 all
  phpgw plugin for GOsa²

gosa-plugin-phpgw-schema/xenial,xenial 2.7.4+reloaded2-9ubuntu1 all
  LDAP schema for GOsa² phpgw plugin

gosa-plugin-phpscheduleit/xenial,xenial 2.7.4+reloaded2-9ubuntu1 all
  phpscheduleit plugin for GOsa²

gosa-plugin-phpscheduleit-schema/xenial,xenial 2.7.4+reloaded2-9ubuntu1 all
  LDAP schema for GOsa² phpscheduleit plugin

gphpedit/xenial 0.9.98-3 amd64
  development environment for PHP/HTML/CSS

grub-imageboot/xenial,xenial 0.6 all
  boot iso, harddisk and floppy images with grub2 and syslinux memdisk

gtk-clearlooks-gperfection2-theme/xenial 1.1-0ubuntu2 amd64
  gtk theme for the clearlooks engine

haserl/xenial 0.9.33-1 amd64
  CGI scripting program for embedded environments

hhvm/xenial 3.11.1+dfsg-1ubuntu1 amd64
  HipHop Virtual Machine, a JIT replacement for PHP - main runtime

hhvm-dbg/xenial 3.11.1+dfsg-1ubuntu1 amd64
  HipHop Virtual Machine, a JIT replacement for PHP - debugging symbols

hhvm-dev/xenial 3.11.1+dfsg-1ubuntu1 amd64
  HipHop Virtual Machine, a JIT replacement for PHP - development files

htcheck-php/xenial,xenial 1:2.0.0~rc1-2ubuntu1 all
  Simple php interface to database generated by ht://Check

ibus-table-yong/xenial,xenial 1.8.2-1 all
  ibus-table input method: YongMa

ir.lv2/xenial 1.3.2~dfsg0-2 amd64
  LV2 IR reverb

irssi-scripts/xenial,xenial 20160301 all
  collection of scripts for irssi

jclicmoodle/xenial,xenial 0.2.3-1 all
  JClic module for Moodle

jed/xenial 1:0.99.19-4 amd64
  editor for programmers (textmode version)

jffnms/xenial,xenial 0.9.3-3ubuntu1 all
  PHP Network Management System

jkmeter/xenial 0.6.1-3build1 amd64
  horizontal or vertical bargraph audio level meter for Jack Audio Connection Kit

jsonlint/xenial,xenial 1.4.0-1build1 all
  validating parser of JSON data structures

kdevelop-php/xenial 1.7.3-0ubuntu1 amd64
  PHP plugin for KDevelop

kdevelop-php-dbg/xenial 1.7.3-0ubuntu1 amd64
  debugging symbols for the KDevelop PHP plugin

kdevelop-php-docs/xenial 1.7.1-0ubuntu1 amd64
  PHP documentation plugin for KDevelop

kdevelop-php-docs-l10n/xenial,xenial 1.7.1-0ubuntu1 all
  localization files for KDevelop PHP documentation plugin

kdevelop-php-l10n/xenial,xenial 1.7.3-0ubuntu1 all
  localization files for KDevelop PHP plugin

klone/xenial,xenial 2.1.0~rc1-1 all
  embedded web application development framework

letodms/xenial,xenial 3.3.11+dfsg.1-2ubuntu1 all
  document management system based on PHP and MySQL

letodms-webdav/xenial,xenial 3.3.11+dfsg.1-2ubuntu1 all
  document management system based on PHP and MySQL - WebDAV server

libapache2-mod-auth-memcookie/xenial 1.0.2-8 amd64
  Apache2 authentication and authorization module.

libapache2-mod-auth-tkt/xenial 2.1.0+dfsg-1 amd64
  lightweight single-sign-on authentication module for Apache

libapache2-mod-authn-yubikey/xenial 1.0-1.1 amd64
  Yubikey authentication provider for Apache

libapache2-mod-php/xenial,xenial 1:7.0+35ubuntu6 all
  server-side, HTML-embedded scripting language (Apache 2 module) (default)

libapache2-mod-php7.0/xenial 7.0.4-7ubuntu2 amd64
  server-side, HTML-embedded scripting language (Apache 2 module)

libapache2-mod-watchcat/xenial 1.1.2-1 amd64
  Process monitoring Apache module

libapache2-mod-xsendfile/xenial 0.12-2 amd64
  Serve large static files efficiently from web applications

libarc-php/xenial,xenial 2.2.5-1ubuntu1 all
  Flexible RDF system for semantic web and PHP practitioners

libawl-php/xenial,xenial 0.56-1ubuntu1 all
  Andrew's Web Libraries - PHP Utility Libraries

libcgi-session-serialize-yaml-perl/xenial,xenial 4.26-2 all
  YAML and YAML::Syck support for CGI::Session's serializers

libcgi-struct-xs-perl/xenial 1.04-2build1 amd64
  Perl module to build structures from CGI data, XS version

libcode-tidyall-perl/xenial,xenial 0.32~dfsg-1 all
  your all-in-one code tidier and validator

libcollada-urdf-dev/xenial 1.11.8-3~fakesync amd64
  Development files for ROS collada_urdf library

libcollada-urdf0d/xenial 1.11.8-3~fakesync amd64
  ROS collada_urdf library

libct4/xenial 0.91-6.1build1 amd64
  libraries for connecting to MS SQL and Sybase SQL servers

libcups2-dev/xenial 2.1.3-4 amd64
  Common UNIX Printing System(tm) - Development files CUPS library

libfpdf-tpl-php/xenial,xenial 1.2-2ubuntu1 all
  PHP library to use PDF templates with FPDF

libfpdi-php/xenial,xenial 1.4.1-1ubuntu1 all
  PHP library for importing existing PDF documents into FPDF

libghc-highlighting-kate-dev/xenial 0.6.1-1build1 amd64
  syntax highlighting library based on Kate syntax descriptions

libghc-highlighting-kate-doc/xenial,xenial 0.6.1-1build1 all
  library documentation for highlighting-kate; documentation

libghc-highlighting-kate-prof/xenial 0.6.1-1build1 amd64
  highlighting-kate library with profiling enabled; profiling libraries

libgraphite-php/xenial,xenial 1.5-1ubuntu1 all
  PHP Linked Data Library

libgtksourceview-3.0-common/xenial,xenial,now 3.18.2-1 all [installed,automatic]
  common files for the GTK+ syntax highlighting widget

libgtksourceview2.0-common/xenial,xenial 2.10.5-2ubuntu2 all
  common files for the GTK+ syntax highlighting widget

libhtml-defang-perl/xenial,xenial 1.04-3 all
  cleans HTML and CSS of scripting, executable contents and XSS attacks

libhtml-wikiconverter-phpwiki-perl/xenial,xenial 0.51-2 all
  HTML to wiki markup converter - PhpWiki dialect

libisocodes-dev/xenial 1.2.2-1 amd64
  access of iso-codes data and translations - development files

libisocodes1/xenial 1.2.2-1 amd64
  access of iso-codes data and translations

libjs-edit-area/xenial,xenial 0.8.2-1 all
  a free javascript editor for source code

libjs-jquery-jush/xenial,xenial 10-2ubuntu2 all
  jQuery Syntax Highlighter

libmarkdown-php/xenial,xenial 1.0.2-1ubuntu1 all
  PHP library for rendering Markdown data

libmdb2/xenial 0.7.1-4 amd64
  Core library for accessing JET / MS Access (MDB) files

libming-dev/xenial 1:0.4.5-1.2ubuntu7 amd64
  Library to generate SWF (Flash) Files (development files)

libming-util/xenial 1:0.4.5-1.2ubuntu7 amd64
  Library to generate SWF (Flash) Files - Utilities

libming1/xenial 1:0.4.5-1.2ubuntu7 amd64
  Library to generate SWF (Flash) Files

libnet-libidn-perl/xenial,now 0.12.ds-2build2 amd64 [installed,automatic]
  Perl bindings for GNU Libidn

libnusoap-php/xenial,xenial 0.9.5-2ubuntu1 all
  SOAP toolkit for PHP

libphp-adodb/xenial,xenial 5.20.3-1ubuntu1 all
  ADOdb is a PHP database abstraction layer library

libphp-embed/xenial,xenial 1:7.0+35ubuntu6 all
  HTML-embedded scripting language (Embedded SAPI library) (default)

libphp-jabber/xenial,xenial 0.4.3-4ubuntu1 all
  Object-oriented PHP interface for the Jabber/XMPP protocol

libphp-magpierss/xenial,xenial 0.72-10ubuntu1 all
  provides an XML-based RSS parser in PHP

libphp-pclzip/xenial,xenial 2.8.2-3ubuntu1 all
  transitional dummy package

libphp-phpmailer/xenial,xenial 5.2.14+dfsg-1build1 all
  full featured email transfer class for PHP

libphp-predis/xenial 0.8.3-1 amd64
  Flexible and feature-complete PHP client library for the Redis key-value store

libphp-serialization-perl/xenial,xenial 0.34-1 all
  Perl module to manipulate serialized PHP data structures

libphp-simplepie/xenial,xenial 1.3.1+dfsg-3ubuntu1 all
  RSS and Atom feed parsing in PHP

libphp-snoopy/xenial,xenial 2.0.0-1ubuntu1 all
  Snoopy is a PHP class that simulates a web browser

libphp-swiftmailer/xenial,xenial 5.4.1-1ubuntu1 all
  transitional dummy package

libphp7.0-embed/xenial 7.0.4-7ubuntu2 amd64
  HTML-embedded scripting language (Embedded SAPI library)

libphutil/xenial,xenial 0~git20160124-1ubuntu1 all
  Shared library for Arcanist and Phabricator

librinci-perl/xenial,xenial 1.1.78-1 all
  module that provides a language-neutral metadata for your code

libsmokeakonadi3/xenial 4:4.14.2-0ubuntu6 amd64
  Akonadi SMOKE library

libsmokeattica3/xenial 4:4.14.2-0ubuntu6 amd64
  Attica SMOKE library

libsmokebase3v5/xenial 4:4.14.3-1 amd64
  SMOKE base library

libsmokekde-dev/xenial 4:4.14.2-0ubuntu6 amd64
  KDE SMOKE libraries -- development files

libsmokekde4-dbg/xenial 4:4.14.2-0ubuntu6 amd64
  KDE SMOKE libraries -- debug symbols

libsmokekdecore4-3/xenial 4:4.14.2-0ubuntu6 amd64
  KDE Core SMOKE libraries

libsmokekdeui4-3/xenial 4:4.14.2-0ubuntu6 amd64
  KDE Ui SMOKE libraries

libsmokekfile3/xenial 4:4.14.2-0ubuntu6 amd64
  KFile SMOKE library

libsmokekhtml3/xenial 4:4.14.2-0ubuntu6 amd64
  KHTML SMOKE library

libsmokekio3/xenial 4:4.14.2-0ubuntu6 amd64
  KIO SMOKE library

libsmokeknewstuff2-3/xenial 4:4.14.2-0ubuntu6 amd64
  KNewStuff2 SMOKE library

libsmokeknewstuff3-3/xenial 4:4.14.2-0ubuntu6 amd64
  KNewStuff3 SMOKE library

libsmokekparts3/xenial 4:4.14.2-0ubuntu6 amd64
  KParts SMOKE libraries

libsmokektexteditor3/xenial 4:4.14.2-0ubuntu6 amd64
  KTextEditor SMOKE libraries

libsmokekutils3/xenial 4:4.14.2-0ubuntu6 amd64
  KUtils SMOKE libraries

libsmokeokular3/xenial 4:4.14.2-0ubuntu6 amd64
  Okular SMOKE bindings

libsmokephonon3/xenial 4:4.14.3-1ubuntu1 amd64
  Qt Phonon SMOKE library

libsmokeplasma3/xenial 4:4.14.2-0ubuntu6 amd64
  Plasma SMOKE library

libsmokeqimageblitz3/xenial 4:4.14.3-1ubuntu1 amd64
  QImageBlitz SMOKE libraries

libsmokeqsci3/xenial 4:4.14.3-1ubuntu1 amd64
  QScintilla2 SMOKE library

libsmokeqt3support4-3/xenial 4:4.14.3-1ubuntu1 amd64
  Qt3 Support SMOKE library

libsmokeqt4-dbg/xenial 4:4.14.3-1ubuntu1 amd64
  Qt SMOKE libraries debug symbols

libsmokeqt4-dev/xenial 4:4.14.3-1ubuntu1 amd64
  Development files for Qt SMOKE libraries

libsmokeqtcore4-3/xenial 4:4.14.3-1ubuntu1 amd64
  Qt Core SMOKE library

libsmokeqtdbus4-3/xenial 4:4.14.3-1ubuntu1 amd64
  Qt D-Bus SMOKE library

libsmokeqtdeclarative4-3/xenial 4:4.14.3-1ubuntu1 amd64
  Qt Declarative SMOKE library

libsmokeqtgui4-3/xenial 4:4.14.3-1ubuntu1 amd64
  Qt Gui SMOKE library

libsmokeqthelp4-3/xenial 4:4.14.3-1ubuntu1 amd64
  Qt Help SMOKE library

libsmokeqtnetwork4-3/xenial 4:4.14.3-1ubuntu1 amd64
  Qt Network SMOKE library

libsmokeqtopengl4-3/xenial 4:4.14.3-1ubuntu1 amd64
  Qt OpenGL SMOKE library

libsmokeqtscript4-3/xenial 4:4.14.3-1ubuntu1 amd64
  Qt Script SMOKE library

libsmokeqtsql4-3/xenial 4:4.14.3-1ubuntu1 amd64
  Qt Sql SMOKE library

libsmokeqtsvg4-3/xenial 4:4.14.3-1ubuntu1 amd64
  Qt Svg SMOKE library

libsmokeqttest4-3/xenial 4:4.14.3-1ubuntu1 amd64
  Qt Test SMOKE library

libsmokeqtuitools4-3/xenial 4:4.14.3-1ubuntu1 amd64
  Qt Ui Tools SMOKE library

libsmokeqtxml4-3/xenial 4:4.14.3-1ubuntu1 amd64
  Qt Xml SMOKE library

libsmokeqtxmlpatterns4-3/xenial 4:4.14.3-1ubuntu1 amd64
  Qt XmlPatterns SMOKE library

libsmokesolid3/xenial 4:4.14.2-0ubuntu6 amd64
  Solid SMOKE libraries

libsparkline-php/xenial,xenial 0.2-5ubuntu1 all
  sparkline graphing library for php

libstring-koremutake-perl/xenial,xenial 0.30-5 all
  Convert to/from Koremutake Memorable Random Strings

libswe-doc/xenial,xenial 1.80.00.0001-1ubuntu1 all
  documentation for the libswe package

libswf-perl/xenial 1:0.4.5-1.2ubuntu7 amd64
  Ming (SWF) module for Perl

libtext-mediawikiformat-perl/xenial,xenial 1.04-2 all
  module that converts Mediawiki markup into other text formats

libtntnet-dev/xenial 2.2.1-2 amd64
  Tntnet library development headers

libtntnet12v5/xenial 2.2.1-2 amd64
  Tntnet libraries

libwcat1/xenial 1.1-1 amd64
  Process monitoring library

libwcat1-dev/xenial 1.1-1 amd64
  Process monitoring library

libwebinject-perl/xenial,xenial 1.90-1 all
  Perl Module for testing web services

libwulf-dev/xenial 2.6.0-0ubuntu3 amd64
  development environment for wulfware

libwulf2/xenial 2.6.0-0ubuntu3 amd64
  shared libraries for running wulfware programs

libwww-facebook-api-perl/xenial,xenial 0.4.18-2 all
  Facebook API implementation

libxflaim-dev/xenial 5.1.969-0ubuntu3 i386
  An extensible, flexible, adaptable, embeddable XML database engine

libxflaim3.2/xenial 5.1.969-0ubuntu3 i386
  An extensible, flexible, adaptable, embeddable XML database engine

libykclient-dev/xenial 2.14-1 amd64
  Yubikey client library development files

libykclient3/xenial 2.14-1 amd64
  Yubikey client library runtime

libzend-framework-php/xenial,xenial 1.11.11-0ubuntu3 all
  a simple, straightforward, open-source software framework for PHP 5

libzend-framework-zendx-php/xenial,xenial 1.11.11-0ubuntu3 all
  a simple, straightforward, open-source software framework for PHP 5

llgal/xenial,xenial 0.13.17-2 all
  Command-line online gallery generator

ltsp-cluster-control/xenial,xenial 2.0.3-0ubuntu3 all
  Web based thin-client configuration management

mgltools-cadd/xenial,xenial 1.5.7~rc1+cvs.20140424-1 all
  Computer Aided Drug Discovery (CADD) Pipeline

ming-fonts-dejavu/xenial,xenial 1:0.4.5-1.2ubuntu7 all
  Ming format DejaVue Fonts

ming-fonts-opensymbol/xenial,xenial 1:0.4.5-1.2ubuntu7 all
  Ming format Opensymbol Fonts

mlmmj-php-web/xenial,xenial 1.2.18.1-1ubuntu1 all
  web interface for mlmmj, written in php

mlmmj-php-web-admin/xenial,xenial 1.2.18.1-1ubuntu1 all
  administrative web interface for mlmmj, written in php

modsecurity-crs/xenial,xenial 2.2.9-1 all
  modsecurity's Core Rule Set

mrename/xenial,xenial 1.2-12 all
  A tool for easy and automatic renaming of many files

musica/xenial,xenial 2.28-0ubuntu1 all
  web application for browsing and listening to your music

nagios-plugins-contrib/xenial 16.20151226 amd64
  Plugins for nagios compatible monitoring systems

navit/xenial 0.5.0+dfsg.1-1build1 amd64
  Car navigation system with routing engine

netbeans/xenial,xenial 8.1+dfsg2-3 all
  Extensible Java IDE

nzb/xenial 0.2-1 amd64
  Usenet binary grabber

nzbget/xenial 16.4+dfsg-1build1 amd64
  command-line based binary newsgrabber for nzb files

papercut/xenial,xenial 0.9.13-7.1ubuntu1 all
  simple and extensible NNTP server

parrot/xenial 6.6.0-1build1 amd64
  virtual machine for dynamic languages

pdepend/xenial,xenial 2.2.2-1build1 all
  design quality metrics for PHP packages

pear-channels/xenial,xenial 0~20141011-1 all
  PEAR channels for various projects

pgtap/xenial,xenial 0.95.0-3 all
  Unit testing framework for PostgreSQL

pgtap-doc/xenial,xenial 0.95.0-3 all
  Unit testing framework for PostgreSQL

phamm/xenial,xenial 0.6.2-1.2ubuntu1 all
  PHP front-end to manage virtual services on LDAP - main package

phamm-ldap/xenial,xenial 0.6.2-1.2ubuntu1 all
  PHP front-end to manage virtual services on LDAP - back-end files

phamm-ldap-amavis/xenial,xenial 0.6.2-1.2ubuntu1 all
  PHP front-end to manage virtual services on LDAP - back-end files

phamm-ldap-vacation/xenial,xenial 0.6.2-1.2ubuntu1 all
  PHP front-end to manage virtual services on LDAP - back-end files

phing/xenial,xenial 2.13.0-2ubuntu2 all
  PHP5 project build system based on Apache Ant

php/xenial,xenial,now 1:7.0+35ubuntu6 all [installed]
  server-side, HTML-embedded scripting language (default)

php-all-dev/xenial,xenial 1:35ubuntu6 all
  package depending on all supported PHP development packages

php-amqp/xenial 1.7.0~alpha2-3 amd64
  AMQP extension for PHP

php-amqplib/xenial,xenial 2.6.1-1build1 all
  pure PHP implementation of the AMQP protocol

php-analog/xenial,xenial 1.0.7-1build1 all
  PHP micro logging package

php-apcu/xenial 5.1.3+4.0.10-1build1 amd64
  APC User Cache for PHP

php-apigen/xenial,xenial 4.1.2-1ubuntu2 all
  PHP source code API generator

php-apigen-theme-bootstrap/xenial,xenial 1.1.3+dfsg-1build1 all
  Twitter Bootstrap theme for ApiGen

php-apigen-theme-default/xenial,xenial 1.0.2+dfsg-1build1 all
  Default theme for ApiGen

php-assetic/xenial,xenial 1.3.2-1build1 all
  Asset Management for PHP

php-ast/xenial 0.1.1-1 amd64
  AST extension for PHP 7

php-auth/xenial,xenial 1.6.4-1build1 all
  Creating an authentication system

php-auth-http/xenial,xenial 2.1.8-1build1 all
  HTTP authentication

php-auth-sasl/xenial,xenial 1.0.6-2build1 all
  Abstraction of various SASL mechanism responses

php-aws-sdk/xenial,xenial 3.15.1-1 all
  software development kit to build solutions for Amazon

php-bcmath/xenial,xenial 1:7.0+35ubuntu6 all
  Bcmath module for PHP [default]

php-bz2/xenial,xenial 1:7.0+35ubuntu6 all
  bzip2 module for PHP [default]

php-cache/xenial,xenial 1.5.6-2ubuntu1 all
  framework for caching of arbitrary data

php-cache-lite/xenial,xenial 1.7.16-1ubuntu1 all
  Fast and Safe little cache system

php-cas/xenial,xenial 1.3.3-2ubuntu1 all
  Central Authentication Service client library in php

php-cgi/xenial,xenial 1:7.0+35ubuntu6 all
  server-side, HTML-embedded scripting language (CGI binary) (default)

php-cli/xenial,xenial 1:7.0+35ubuntu6 all
  command-line interpreter for the PHP scripting language (default)

php-cli-prompt/xenial,xenial 1.0.1+dfsg-1build1 all
  tiny helper prompting for user input

php-codecoverage/xenial,xenial 3.2.1+dfsg-1 all
  collection, processing, and rendering for code coverage

php-codesniffer/xenial,xenial 2.5.1-2ubuntu1 all
  PHP, CSS and JavaScript coding standard analyzer and checker

php-common/xenial,xenial,now 1:35ubuntu6 all [installed,automatic]
  Common files for PHP packages

php-compat/xenial,xenial 1.6.0a3-2build1 all
  Provides components to achieve PHP version independence

php-composer-semver/xenial,xenial 1.2.0-1build1 all
  Semver library that offers utilities, version constraint parsing and

php-composer-spdx-licenses/xenial,xenial 1.1.2-1build1 all
  SPDX licenses list and validation library

php-console-commandline/xenial,xenial 1.2.0-1build1 all
  A full featured command line options and arguments parser

php-console-table/xenial,xenial 1.3.0-1ubuntu2 all
  Library that makes it easy to build console style tables

php-crypt-blowfish/xenial,xenial 1.1.0~RC2-4ubuntu2 all
  Allows for quick two-way blowfish encryption without requiring the MCrypt PHP extension

php-crypt-cbc/xenial,xenial 1.0.1-1build1 all
  PEAR class to emulate Perl's Crypt::CBC module

php-crypt-chap/xenial,xenial 1.5.0-1build1 all
  Generating CHAP packets

php-crypt-gpg/xenial,xenial 1.4.0-1ubuntu2 all
  PHP PEAR module for encrypting and decrypting with GnuPG

php-cssmin/xenial,xenial 3.0.4-1build1 all
  CSS minification class

php-curl/xenial,xenial 1:7.0+35ubuntu6 all
  CURL module for PHP [default]

php-date/xenial,xenial 1.4.7-2build1 all
  Generic date/time handling class for PEAR

php-db/xenial,xenial 1.7.14-3build1 all
  PHP PEAR Database Abstraction Layer

php-deepcopy/xenial,xenial 1.5.0-1build1 all
  create deep copies (clones) of objects

php-dev/xenial,xenial 1:7.0+35ubuntu6 all
  Files for PHP module development (default)

php-directory-scanner/xenial,xenial 1.3.1-2ubuntu2 all
  recursive directory scanner and filter

php-doc/xenial,xenial 20140201-1ubuntu1 all
  Documentation for PHP5

php-doctrine-annotations/xenial,xenial 1.2.7-1build1 all
  Docblock Annotations Parser - Doctrine component

php-doctrine-bundle/xenial,xenial 1.6.2-1ubuntu1 all
  bundle library - Doctrine component

php-doctrine-cache/xenial,xenial 1.6.0-1ubuntu2 all
  cache library - Doctrine component

php-doctrine-cache-bundle/xenial,xenial 1.3.0-2ubuntu3 all
  cache bundle library - Doctrine component

php-doctrine-collections/xenial,xenial 1.3.0-2ubuntu1 all
  Collections Abstraction library - Doctrine component

php-doctrine-common/xenial,xenial 2.4.3-1ubuntu1 all
  common extensions for Doctrine

php-doctrine-data-fixtures/xenial,xenial 1.1.1-4 all
  Data Fixtures for all Doctrine Object Managers

php-doctrine-dbal/xenial,xenial 2.4.5-2build1 all
  database abstraction layer for Doctrine

php-doctrine-inflector/xenial,xenial 1.1.0-1ubuntu1 all
  string manipulations library - Doctrine component

php-doctrine-instantiator/xenial,xenial 1.0.5-1ubuntu1 all
  lightweight utility to instantiate objects in PHP

php-doctrine-lexer/xenial,xenial 1.0.1-3build1 all
  base lexer library - Doctrine component

php-doctrine-orm/xenial,xenial 2.4.8-2 all
  tool for object-relational mapping

php-dompdf/xenial,xenial 0.6.1+dfsg-2ubuntu1 all
  HTML to PDF converter

php-dropbox/xenial,xenial 1.0.0-4ubuntu1 all
  Dropbox API library

php-elisp/xenial,xenial 1.13.5-2 all
  Emacs support for php files

php-email-validator/xenial,xenial 1.2.11-1ubuntu2 all
  A library for validating emails

php-enchant/xenial,xenial 1:7.0+35ubuntu6 all
  Enchant module for PHP [default]

php-fdomdocument/xenial,xenial 1.6.1-1build1 all
  extension to PHP's standard DOM

php-file-iterator/xenial,xenial 1.4.1-1build1 all
  FilterIterator implementation for PHP

php-finder-facade/xenial,xenial 1.2.0-1ubuntu1 all
  convenience wrapper for Symfony's Finder component

php-finder-facade-doc/xenial,xenial 1.2.0-1ubuntu1 all
  convenience wrapper for Symfony's Finder component - documentation

php-font-lib/xenial,xenial 0.2.2+dfsg-2build1 all
  read, parse, export and make subsets of different fonts

php-fpdf/xenial,xenial 3:1.7.dfsg-1.1ubuntu1 all
  PHP class to generate PDF files

php-fpm/xenial,xenial 1:7.0+35ubuntu6 all
  server-side, HTML-embedded scripting language (FPM-CGI binary) (default)

php-fshl/xenial,xenial 2.1.0-2build1 all
  Fast Syntax HighLighter

php-fxsl/xenial,xenial 1.1.1-1ubuntu1 all
  XSL wrapper and extension to XSLTProcessor

php-gd/xenial,xenial 1:7.0+35ubuntu6 all
  GD module for PHP [default]

php-geoip/xenial 1.1.0-4 amd64
  GeoIP module for PHP

php-geshi/xenial,xenial 1.0.8.11-2ubuntu1 all
  Generic Syntax Highlighter

php-getid3/xenial,xenial 1.9.11+dfsg-1build1 all
  scripts to extract information from multimedia files

php-gettext/xenial,xenial 1.0.11-2build1 all
  read gettext MO files directly, without requiring anything other than PHP

php-gmp/xenial,xenial 1:7.0+35ubuntu6 all
  GMP module for PHP [default]

php-gnupg/xenial 1.3.6-1ubuntu1 amd64
  wrapper around the gpgme library

php-google-api-php-client/xenial,xenial 0.6.7-2ubuntu1 all
  Google APIs client library for PHP

php-google-auth/xenial,xenial 0.5-1build1 all
  Google Auth Library for PHP

php-guzzle-stream/xenial,xenial 3.0.0-5 all
  implementation of the proposed PSR-7 stream interface

php-guzzlehttp/xenial,xenial 6.1.1-1 all
  object-oriented PHP HTTP client

php-guzzlehttp-promises/xenial,xenial 1.0.3-1build1 all
  Guzzle promises library

php-guzzlehttp-psr7/xenial,xenial 1.2.2-1ubuntu1 all
  PSR-7 message implementation

php-guzzlehttp-ringphp/xenial,xenial 1.1.0-2ubuntu1 all
  Ring adapter and handler system for Guzzle

php-guzzlehttp-ringphp-doc/xenial,xenial 1.1.0-2ubuntu1 all
  Ring adapter and handler system for Guzzle - documentation

php-hamcrest/xenial,xenial 1.2.2-1ubuntu1 all
  This is the PHP port of Hamcrest Matchers

php-horde/xenial,xenial 5.2.9+debian0-1build1 all
  Horde Application Framework

php-horde-activesync/xenial,xenial 2.31.1-1ubuntu1 all
  Horde ActiveSync Server Library

php-horde-alarm/xenial,xenial 2.2.6-1ubuntu1 all
  Horde Alarm Libraries

php-horde-ansel/xenial,xenial 3.0.3+debian0-3 all
  Photo management application

php-horde-argv/xenial,xenial 2.0.12-1ubuntu1 all
  Horde command-line argument parsing package

php-horde-auth/xenial,xenial 2.1.11-1ubuntu1 all
  Horde Authentication API

php-horde-autoloader/xenial,xenial 2.1.2-1ubuntu1 all
  Horde Autoloader

php-horde-browser/xenial,xenial 2.0.11-1build1 all
  Horde Browser API

php-horde-cache/xenial,xenial 2.5.2-1build1 all
  Horde Caching API

php-horde-cli/xenial,xenial 2.0.6-3build1 all
  Horde Command Line Interface API

php-horde-compress/xenial,xenial 2.1.4-1ubuntu1 all
  Horde Compression API

php-horde-compress-fast/xenial,xenial 1.1.1-1ubuntu1 all
  Fast Compression Library

php-horde-constraint/xenial,xenial 2.0.3-1ubuntu1 all
  Horde Constraint library

php-horde-content/xenial,xenial 2.0.5-1ubuntu1 all
  Tagging application

php-horde-controller/xenial,xenial 2.0.4-1ubuntu1 all
  Horde Controller libraries

php-horde-core/xenial,xenial 2.22.6+debian0-1ubuntu1 all
  Horde Core Framework libraries

php-horde-crypt/xenial,xenial 2.7.0-1ubuntu2 all
  Horde Cryptography API

php-horde-crypt-blowfish/xenial,xenial 1.1.1-1ubuntu1 all
  Blowfish Encryption Library

php-horde-css-parser/xenial,xenial 1.0.8-1ubuntu1 all
  Horde CSS Parser

php-horde-cssminify/xenial,xenial 1.0.2-4build1 all
  CSS Minification

php-horde-data/xenial,xenial 2.1.4-1ubuntu1 all
  Horde Data API

php-horde-date/xenial,xenial 2.2.0-1ubuntu1 all
  Horde Date package

php-horde-date-parser/xenial,xenial 2.0.5-1ubuntu1 all
  Horde Date Parser

php-horde-dav/xenial,xenial 1.1.2-3build1 all
  Horde library for WebDAV, CalDAV, CardDAV

php-horde-db/xenial,xenial 2.3.1-1ubuntu2 all
  Horde Database Libraries

php-horde-editor/xenial,xenial 2.0.4+debian0-3build1 all
  Horde Editor API

php-horde-elasticsearch/xenial,xenial 1.0.3-3build1 all
  Horde ElasticSearch client

php-horde-exception/xenial,xenial 2.0.7-1ubuntu1 all
  Horde Exception Handler

php-horde-feed/xenial,xenial 2.0.4-1ubuntu1 all
  Horde Feed libraries

php-horde-form/xenial,xenial 2.0.12-1build1 all
  Horde Form API

php-horde-gollem/xenial,xenial 3.0.7-1build1 all
  Web-based file manager

php-horde-group/xenial,xenial 2.1.0-1ubuntu1 all
  Horde User Groups System

php-horde-groupware/xenial,xenial 5.2.12-1build1 all
  Horde Groupware

php-horde-hashtable/xenial,xenial 1.2.4-1ubuntu1 all
  Horde Hash Table Interface

php-horde-history/xenial,xenial 2.3.6-1ubuntu1 all
  API for tracking the history of an object

php-horde-http/xenial,xenial 2.1.5-3ubuntu2 all
  Horde HTTP libraries

php-horde-icalendar/xenial,xenial 2.1.2-1ubuntu2 all
  iCalendar API

php-horde-idna/xenial,xenial 1.0.3-2build1 all
  IDNA backend normalization package

php-horde-image/xenial,xenial 2.3.4-2 all
  Horde Image API

php-horde-imap-client/xenial,xenial 2.29.5-1ubuntu1 all
  Horde IMAP Client

php-horde-imp/xenial,xenial 6.2.12-1ubuntu1 all
  A web based webmail system

php-horde-imsp/xenial,xenial 2.0.8-2build1 all
  IMSP API

php-horde-ingo/xenial,xenial 3.2.8-1ubuntu1 all
  An email filter rules manager

php-horde-injector/xenial,xenial 2.0.5-1ubuntu1 all
  Horde dependency injection container

php-horde-itip/xenial,xenial 2.1.1-1ubuntu1 all
  iTip invitation response handling

php-horde-javascriptminify/xenial,xenial 1.1.2-3build1 all
  Javascript Minification

php-horde-javascriptminify-jsmin/xenial,xenial 1.0.2-2 all
  Horde Javascript Minifier - Jsmin PHP Driver

php-horde-kolab-format/xenial,xenial 2.0.8-1ubuntu1 all
  A package for reading/writing Kolab data formats

php-horde-kolab-server/xenial,xenial 2.0.5-1ubuntu1 all
  A package for manipulating the Kolab user database

php-horde-kolab-session/xenial,xenial 2.0.3-1ubuntu1 all
  A package managing an active Kolab session

php-horde-kolab-storage/xenial,xenial 2.2.1-1ubuntu1 all
  A package for handling Kolab data stored on an IMAP server

php-horde-kronolith/xenial,xenial 4.2.13-1ubuntu1 all
  A web based calendar

php-horde-ldap/xenial,xenial 2.3.2-1ubuntu1 all
  Horde LDAP libraries

php-horde-listheaders/xenial,xenial 1.2.3-1ubuntu1 all
  Horde List Headers Parsing Library

php-horde-lock/xenial,xenial 2.1.2-1ubuntu1 all
  Horde Resource Locking System

php-horde-log/xenial,xenial 2.1.3-1ubuntu1 all
  Horde Logging library

php-horde-logintasks/xenial,xenial 2.0.6-1ubuntu1 all
  Horde Login Tasks System

php-horde-lz4/xenial 1.0.9-1ubuntu1 amd64
  Horde LZ4 Compression Extension

php-horde-mail/xenial,xenial 2.6.3-1ubuntu1 all
  Horde Mail Library

php-horde-mail-autoconfig/xenial,xenial 1.0.2-3ubuntu1 all
  Horde Mail Autoconfiguration

php-horde-mapi/xenial,xenial 1.0.6-2 all
  MAPI utility library

php-horde-memcache/xenial,xenial 2.0.7-3build1 all
  Horde Memcache API

php-horde-mime/xenial,xenial 2.9.3-1ubuntu1 all
  Horde MIME Library

php-horde-mime-viewer/xenial,xenial 2.1.2-1build1 all
  Horde MIME Viewer Library

php-horde-mnemo/xenial,xenial 4.2.9-1ubuntu1 all
  A web based notes manager

php-horde-nag/xenial,xenial 4.2.7-1ubuntu1 all
  A web based task list manager

php-horde-nls/xenial,xenial 2.1.0-1build1 all
  Native Language Support (NLS)

php-horde-notification/xenial,xenial 2.0.4-2 all
  Horde Notification System

php-horde-oauth/xenial,xenial 2.0.3-3build1 all
  Horde OAuth client/server

php-horde-openxchange/xenial,xenial 1.0.0-5build1 all
  Open-Xchange Connector

php-horde-pack/xenial,xenial 1.0.6-1ubuntu1 all
  Horde Pack Utility

php-horde-passwd/xenial,xenial 5.0.4-1ubuntu1 all
  Horde password changing application

php-horde-pdf/xenial,xenial 2.0.7-1ubuntu1 all
  Horde PDF library

php-horde-perms/xenial,xenial 2.1.6-1ubuntu1 all
  Horde Permissions System

php-horde-prefs/xenial,xenial 2.7.5-1ubuntu1 all
  Horde Preferences API

php-horde-queue/xenial,xenial 1.1.3-1build1 all
  Horde Queue

php-horde-rdo/xenial,xenial 2.0.5-1ubuntu1 all
  Rampage Data Objects

php-horde-role/xenial,xenial 1.0.1-10build1 all
  PEAR installer role used to install Horde components

php-horde-routes/xenial,xenial 2.0.5-1ubuntu1 all
  Horde Routes URL mapping system

php-horde-rpc/xenial,xenial 2.1.6-1build1 all
  Horde RPC API

php-horde-scheduler/xenial,xenial 2.0.2-3build1 all
  Horde Scheduler System

php-horde-scribe/xenial,xenial 2.0.2-3build1 all
  Scribe

php-horde-secret/xenial,xenial 2.0.6-1ubuntu1 all
  Secret Encryption API

php-horde-serialize/xenial,xenial 2.0.5-1ubuntu1 all
  Data Encapulation API

php-horde-service-facebook/xenial,xenial 2.0.8-3build1 all
  Horde Facebook client

php-horde-service-gravatar/xenial,xenial 1.0.1-1ubuntu1 all
  API accessor for gravatar.com

php-horde-service-twitter/xenial,xenial 2.1.5-3build1 all
  Horde Twitter client

php-horde-service-urlshortener/xenial,xenial 2.0.2-3build1 all
  Horde_Service_UrlShortener Class

php-horde-service-weather/xenial,xenial 2.3.2-1ubuntu1 all
  Horde Weather Provider

php-horde-sesha/xenial,xenial 1.0.0~beta1-11ubuntu1 all
  A simple Inventory App for Horde

php-horde-sessionhandler/xenial,xenial 2.2.7-1ubuntu1 all
  Horde Session Handler API

php-horde-share/xenial,xenial 2.0.8-1ubuntu1 all
  Horde Shared Permissions System

php-horde-smtp/xenial,xenial 1.9.2-1ubuntu1 all
  Horde SMTP Client

php-horde-socket-client/xenial,xenial 2.1.0-1build1 all
  Horde Socket Client

php-horde-spellchecker/xenial,xenial 2.1.3-1ubuntu1 all
  Spellcheck API

php-horde-stream/xenial,xenial 1.6.3-1ubuntu1 all
  Horde stream handler

php-horde-stream-filter/xenial,xenial 2.0.4-1ubuntu1 all
  Horde Stream filters

php-horde-stream-wrapper/xenial,xenial 2.1.3-1ubuntu1 all
  Horde Stream wrappers

php-horde-support/xenial,xenial 2.1.5-1ubuntu1 all
  Horde support package

php-horde-syncml/xenial,xenial 2.0.6-1build1 all
  Horde_SyncMl provides an API for processing SyncML requests

php-horde-template/xenial,xenial 2.0.3-1ubuntu1 all
  Horde Template System

php-horde-test/xenial,xenial 2.6.0+debian0-1build1 all
  Horde testing base classes

php-horde-text-diff/xenial,xenial 2.1.2-1ubuntu1 all
  Engine for performing and rendering text diffs

php-horde-text-filter/xenial,xenial 2.3.3-1ubuntu1 all
  Horde Text Filter API

php-horde-text-filter-jsmin/xenial,xenial 1.0.2-2 all
  Horde Text Filter - Jsmin PHP Driver

php-horde-text-flowed/xenial,xenial 2.0.3-1ubuntu1 all
  Horde API for flowed text as per RFC 3676

php-horde-thrift/xenial,xenial 2.0.2-3build1 all
  Thrift

php-horde-timeobjects/xenial,xenial 2.1.1-1build1 all
  Horde timeobjects application

php-horde-timezone/xenial,xenial 1.0.10-1ubuntu1 all
  Timezone library

php-horde-token/xenial,xenial 2.0.8-1ubuntu1 all
  Horde Token API

php-horde-translation/xenial,xenial 2.2.1-1ubuntu1 all
  Horde translation library

php-horde-trean/xenial,xenial 1.1.4-1build1 all
  Web-based bookmarks application

php-horde-tree/xenial,xenial 2.0.4-3build1 all
  Horde Tree API

php-horde-turba/xenial,xenial 4.2.12-1ubuntu1 all
  A web based address book

php-horde-url/xenial,xenial 2.2.5-1ubuntu1 all
  Horde Url class

php-horde-util/xenial,xenial 2.5.7-1ubuntu1 all
  Horde Utility Libraries

php-horde-vfs/xenial,xenial 2.3.1-1ubuntu1 all
  Virtual File System API

php-horde-view/xenial,xenial 2.0.6-1ubuntu1 all
  Horde View API

php-horde-webmail/xenial,xenial 5.2.12-1build1 all
  Horde Groupware Webmail Edition

php-horde-whups/xenial,xenial 3.0.6-1build1 all
  Ticket-tracking application

php-horde-wicked/xenial,xenial 2.0.4-2ubuntu1 all
  Wiki application

php-horde-xml-element/xenial,xenial 2.0.4-1ubuntu1 all
  Horde Xml Element object

php-horde-xml-wbxml/xenial,xenial 2.0.3-1ubuntu1 all
  Horde_Xml_Wbxml provides an API for encoding and decoding WBXML documents used in SyncML and other wireless applications

php-html-safe/xenial,xenial 0.10.1-3build1 all
  strip down all potentially dangerous content within HTML

php-htmlawed/xenial,xenial 1.1.20-1 all
  htmLawed PHP code to purify & filter HTML

php-htmlpurifier/xenial,xenial 4.7.0-1build1 all
  Standards-compliant HTML filter

php-http/xenial,xenial 1.4.1-2build1 all
  PHP PEAR module for HTTP related stuff

php-http-request/xenial,xenial 1.4.4-4 all
  PEAR class to provide an easy way to perform HTTP requests

php-http-request2/xenial,xenial 2.2.1-2build1 all
  Provides an easy way to perform HTTP requests

php-http-webdav-server/xenial,xenial 1.0.0RC6-2build1 all
  WebDAV Server Baseclass

php-icinga/xenial,xenial 2.1.0-1ubuntu1 all
  PHP library to communicate with and use Icinga

php-igbinary/xenial 1.2.1-10-ge0e66b9+1.2.1-2 amd64
  igbinary PHP serializer

php-image-text/xenial,xenial 0.7.0-1build1 all
  Image_Text - Advanced text maipulations in images

php-imagick/xenial 3.4.0~rc6-1ubuntu3 amd64
  Provides a wrapper to the ImageMagick library

php-imap/xenial,xenial 1:7.0+35ubuntu6 all
  IMAP module for PHP [default]

php-interbase/xenial,xenial 1:7.0+35ubuntu6 all
  Interbase module for PHP [default]

php-intl/xenial,xenial 1:7.0+35ubuntu6 all
  Internationalisation module for PHP [default]

php-invoker/xenial,xenial 1.1.4-2build1 all
  Utility class for invoking callables with a timeout

php-irods-prods/xenial,xenial 3.3.0~beta1-2ubuntu1 all
  PHP client API for iRODS

php-jmespath/xenial,xenial 2.3.0-1build1 all
  Declaratively specify how to extract elements from a JSON document

php-json/xenial,xenial 1:7.0+35ubuntu6 all
  JSON module for PHP [default]

php-json-patch/xenial,xenial 0.1.0-2build1 all
  Produce and apply json-patch objects

php-json-schema/xenial,xenial 1.6.1-1build1 all
  implementation of JSON schema

php-jwt/xenial,xenial 3.0.0-1build1 all
  encode and decode JSON Web Tokens (JWT)

php-kdyby-events/xenial,xenial 2.4.0-2 all
  Events for Nette Framework

php-kit-pathjoin/xenial,xenial 1.1.2-1build1 all
  Cross-platform library for normalizing and joining file system paths

php-ldap/xenial,xenial 1:7.0+35ubuntu6 all
  LDAP module for PHP [default]

php-league-flysystem/xenial,xenial 1.0.16-1build1 all
  filesystem abstraction offering one API to many filesystems

php-letodms-core/xenial,xenial 3.3.11-3build1 all
  Document management system - Core files

php-letodms-lucene/xenial,xenial 1.1.1-1 all
  Document management system - Fulltext search

php-libvirt-php/xenial 0.5.2~30-g64dca6f-1 amd64
  libvirt bindings for PHP

php-log/xenial,xenial 1.12.9-1build1 all
  Logging Framework

php-mail/xenial,xenial 1.3.0-1 all
  Class that provides multiple interfaces for sending emails

php-mail-mbox/xenial,xenial 0.6.3-1build1 all
  Read and modify Unix MBOXes

php-mail-mime/xenial,xenial 1.10.0-2 all
  PHP PEAR module for creating MIME messages

php-mail-mimedecode/xenial,xenial 1.5.5-3build1 all
  Provides a class to decode mime messages

php-markdown/xenial,xenial 1.6.0-1build1 all
  PHP library for rendering Markdown data

php-mbstring/xenial,xenial 1:7.0+35ubuntu6 all
  MBSTRING module for PHP [default]

php-mcrypt/xenial,xenial 1:7.0+35ubuntu6 all
  libmcrypt module for PHP [default]

php-mdb2/xenial,xenial 2.5.0b5-1build1 all
  merge of the PEAR DB and Metabase php database abstraction layers

php-mdb2-driver-mysql/xenial,xenial 1.5.0b4-1ubuntu1 all
  PHP PEAR module to provide a MySQL driver for MDB2

php-mdb2-driver-pgsql/xenial,xenial 1.5.0b4-1ubuntu1 all
  PHP PEAR module to provide a PostgreSQL driver for MDB2

php-memcache/xenial 3.0.9~20151130.fdbd46b-2 amd64
  memcache extension module for PHP5

php-memcached/xenial 2.2.0-51-ge573a6e+2.2.0-2build2 amd64
  memcached extension module for PHP5, uses libmemcached

php-mf2/xenial,xenial 0.2.12-1build1 all
  Microformats2 is the simplest way to markup structured information in HTML

php-mime-type/xenial,xenial 1.3.1-1build1 all
  Utility class for dealing with MIME types

php-mockery/xenial,xenial 0.9.4-1build1 all
  mock object framework for PHPUnit and other testing framework

php-mockery-doc/xenial,xenial 0.9.4-1build1 all
  mock object framework for PHPUnit - documentation

php-mongodb/xenial 1.1.5-1~build1 amd64
  MongoDB driver for PHP

php-monolog/xenial,xenial 1.17.2-1ubuntu4 all
  send logs to various destination and web services

php-msgpack/xenial 2.0.1+0.5.7-1 amd64
  PHP extension for interfacing with MessagePack

php-mysql/xenial,xenial 1:7.0+35ubuntu6 all
  MySQL module for PHP [default]

php-mythtv/xenial,xenial 2:0.28.0+fixes.20160413.15cf421-0ubuntu2 all
  PHP Bindings for MythTV

php-net-dime/xenial,xenial 1.0.2-2build1 all
  class that implements DIME encoding

php-net-dns2/xenial,xenial 1.4.1-1build1 all
  PHP5 Resolver library used to communicate with a DNS server

php-net-ftp/xenial,xenial 1:1.4.0-1build1 all
  provides an OO interface to the PHP FTP functions

php-net-imap/xenial,xenial 1:1.1.3-1ubuntu2 all
  Provides an implementation of the IMAP protocol

php-net-ipv4/xenial,xenial 1.3.4-2build1 all
  IPv4 network calculations and validation

php-net-ipv6/xenial,xenial 1.3.0b1-1build1 all
  Check and validate IPv6 addresses

php-net-ldap/xenial,xenial 1:1.1.5-3ubuntu1 all
  OO interface for searching and manipulating LDAP-entries

php-net-ldap2/xenial,xenial 2.2.0-1ubuntu1 all
  Object oriented interface for searching and manipulating LDAP-entries

php-net-ldap3/xenial,xenial 1.0.3-1build1 all
  Object oriented interface for searching and manipulating LDAP entries

php-net-nntp/xenial,xenial 1.5.0-1build1 all
  PHP Pear module for NNTP

php-net-publicsuffix/xenial,xenial 0.1-1ubuntu1 all
  PHP module for detecting registered domains and public suffixes

php-net-sieve/xenial,xenial 1.3.4-2build1 all
  Handles talking to a sieve server

php-net-smartirc/xenial,xenial 1.1.7-1build1 all
  provides an OO interface to the PHP IRC functions

php-net-smtp/xenial,xenial 1.7.1-1build1 all
  PHP PEAR module implementing SMTP protocol

php-net-socket/xenial,xenial 1.0.14-1build1 all
  PHP PEAR Network Socket Interface module

php-net-url/xenial,xenial 1.0.15-3build1 all
  easy parsing of Urls

php-net-url2/xenial,xenial 2.2.0-1build1 all
  Class for parsing and handling URL

php-net-whois/xenial,xenial 1.0.5-3build1 all
  PHP PEAR module for querying whois services

php-nette/xenial,xenial 2.3.8-1ubuntu1 all
  Nette Framework

php-nrk-predis/xenial 1.0.0-1 amd64
  Flexible and feature-complete PHP client library for the Redis key-value store

php-numbers-words/xenial,xenial 0.18.1-2 all
  PEAR module providing methods for spelling numerals in words

php-oauth/xenial 2.0.1+1.2.3-1 amd64
  OAuth 1.0 consumer and provider extension

php-odbc/xenial,xenial 1:7.0+35ubuntu6 all
  ODBC module for PHP [default]

php-openid/xenial,xenial 2.2.2-1.2ubuntu1 all
  PHP OpenID library

php-pager/xenial,xenial 2.4.8-3build1 all
  Pages an array of data, creating links to previous and next pages

php-parser/xenial,xenial 1.4.1-1ubuntu1 all
  convert PHP code into abstract syntax tree

php-patchwork-utf8/xenial,xenial 1.3.0-1build1 all
  UTF-8 strings handling for PHP

php-pclzip/xenial,xenial 2.8.2-3ubuntu1 all
  ZIP archive manager class for PHP

php-pdfparser/xenial,xenial 0.9.25+dfsg-1build1 all
  PHP library to parse PDF files and extract elements like text

php-pear/xenial,xenial 1:1.10.1+submodules+notgz-6 all
  PEAR Base System

php-pecl-http/xenial 3.0.1-0ubuntu5 amd64
  pecl_http module for PHP 5 Extended HTTP Support

php-pecl-http-dev/xenial 3.0.1-0ubuntu5 amd64
  pecl_http module for PHP 5 Extended HTTP Support development headers

php-pgsql/xenial,xenial 1:7.0+35ubuntu6 all
  PostgreSQL module for PHP [default]

php-phpdbg/xenial,xenial 1:7.0+35ubuntu6 all
  server-side, HTML-embedded scripting language (PHPDBG binary) (default)

php-phpdocumentor-reflection/xenial,xenial 1.0.7-1build1 all
  Reflection library to do Static Analysis for PHP Projects

php-phpdocumentor-reflection-common/xenial,xenial 1.0-2build1 all
  Common reflection classes - phpDocumentor component

php-phpdocumentor-reflection-docblock/xenial,xenial 2.0.4-1build1 all
  DocBlock parser - phpDocumentor component

php-phpdocumentor-type-resolver/xenial,xenial 0.1.6-2 all
  TypeResolver and FqsenResolver - phpDocumentor component

php-phpseclib/xenial,xenial 2.0.1-1build1 all
  implementations of an arbitrary-precision integer arithmetic library

php-phpspec-prophecy/xenial,xenial 1.6.0-1build1 all
  object mocking framework - phpspec component

php-picofeed/xenial,xenial 0.1.18-1ubuntu1 all
  Modern library to handle RSS/Atom feeds

php-pimple/xenial,xenial 1.1.1-1build1 all
  simple dependency injection container

php-propro/xenial 2.0.0-0ubuntu1 amd64
  propro module for PHP

php-propro-dev/xenial 2.0.0-0ubuntu1 amd64
  propro module for PHP development headers

php-proxy-manager/xenial,xenial 2.0.0-1ubuntu1 all
  library providing utilities to operate with Object Proxies

php-pspell/xenial,xenial 1:7.0+35ubuntu6 all
  pspell module for PHP [default]

php-psr-cache/xenial,xenial 1.0.0-1build1 all
  Common interface for caching libraries

php-psr-http-message/xenial,xenial 1.0-1build1 all
  Common interface for HTTP messages

php-psr-log/xenial,xenial 1.0.0-3build1 all
  common interface for logging libraries

php-punic/xenial,xenial 1.6.3-1build1 all
  PHP-Unicode CLDR toolkit

php-radius/xenial 1.4.0~b1-0ubuntu1 amd64
  Radius client library

php-random-compat/xenial,xenial 1.2.0-1build1 all
  PHP 5.x polyfill for random_bytes() and random_int() from PHP 7

php-raphf/xenial 2.0.0-0ubuntu1 amd64
  raphf module for PHP

php-raphf-dev/xenial 2.0.0-0ubuntu1 amd64
  raphf module for PHP development headers

php-react-promise/xenial,xenial 2.2.1-1build1 all
  lightweight implementation of CommonJS Promises/A for PHP

php-readline/xenial,xenial 1:7.0+35ubuntu6 all
  readline module for PHP [default]

php-recode/xenial,xenial 1:7.0+35ubuntu6 all
  recode module for PHP [default]

php-redis/xenial 2.2.7-389-g2887ad1+2.2.7-1 amd64
  PHP extension for interfacing with Redis

php-rrd/xenial 2.0.0+1.1.3-3 amd64
  PHP bindings to rrd tool system

php-sabre-dav/xenial,xenial 1.8.12-1ubuntu2 all
  WebDAV Framework for PHP

php-sabre-dav-2.1/xenial,xenial 2.1.10-1ubuntu1 all
  WebDAV Framework for PHP

php-sabre-event/xenial,xenial 3.0.0~as2.0.2-1build1 all
  lightweight library for event-based development

php-sabre-http/xenial,xenial 4.2.1-3ubuntu1 all
  library to ease the work with HTTP protocol

php-sabre-http-3/xenial,xenial 3.0.5-3ubuntu1 all
  library to ease the work with HTTP protocol

php-sabre-uri/xenial,xenial 1.0.1-1build1 all
  several functions for working with URIs

php-sabre-vobject/xenial,xenial 2.1.7-1ubuntu1 all
  library to parse and manipulate iCalendar and vCard objects

php-sabre-vobject-3/xenial,xenial 3.5.0-1ubuntu1 all
  library to parse and manipulate iCalendar and vCard objects

php-sabre-xml/xenial,xenial 1.4.0-1build1 all
  specialized XML reader and writer

php-seclib/xenial,xenial 1.0.1-3 all
  implementations of an arbitrary-precision integer arithmetic library

php-securitylib/xenial,xenial 1.0.0-1build1 all
  base set of security libraries

php-sepa-direct-debit/xenial,xenial 20131216-1ubuntu1 all
  Create Sepa Direct Debit XML Files in PHP

php-services-json/xenial,xenial 1.0.3-1build1 all
  PHP implementaion of json_encode/decode

php-services-weather/xenial,xenial 1.4.7-2ubuntu1 all
  This class acts as an interface to various online weather-services

php-smb/xenial,xenial 1.0.5-1ubuntu1 all
  php wrapper for smbclient and libsmbclient-php

php-smbclient/xenial 0.8.0~rc1-2 amd64
  PHP wrapper for libsmbclient

php-snmp/xenial,xenial 1:7.0+35ubuntu6 all
  SNMP module for PHP [default]

php-soap/xenial,xenial 1:7.0+35ubuntu6 all
  SOAP module for PHP [default]

php-solr/xenial 2.4.0-1 amd64
  PHP extension for communicating with Apache Solr server

php-sql-formatter/xenial,xenial 1.2.17-1build1 all
  a PHP SQL highlighting library

php-sqlite3/xenial,xenial 1:7.0+35ubuntu6 all
  SQLite3 module for PHP [default]

php-ssh2/xenial 0.12-39-g3dfe336+0.12-1build1 amd64
  Bindings for the libssh2 library

php-stomp/xenial 1.0.9-0ubuntu1 amd64
  Streaming Text Oriented Messaging Protocol (STOMP) client module for PHP

php-streams/xenial,xenial 0.2-1build1 all
  A set of generic stream wrappers

php-superclosure/xenial,xenial 2.2.0-1build1 all
  Serialize Closure objects, including their context and binding

php-swiftmailer/xenial,xenial 5.4.1-1ubuntu1 all
  Swiftmailer, free feature-rich PHP mailer

php-sybase/xenial,xenial 1:7.0+35ubuntu6 all
  Sybase module for PHP [default]

php-symfony-asset/xenial,xenial 2.7.10-0ubuntu2 all
  manage asset URLs

php-symfony-browser-kit/xenial,xenial 2.7.10-0ubuntu2 all
  simulate the behavior of a web browser

php-symfony-class-loader/xenial,xenial 2.7.10-0ubuntu2 all
  load PHP classes automatically

php-symfony-config/xenial,xenial 2.7.10-0ubuntu2 all
  load configurations from different data sources

php-symfony-console/xenial,xenial 2.7.10-0ubuntu2 all
  run tasks from the command line

php-symfony-css-selector/xenial,xenial 2.7.10-0ubuntu2 all
  convert CSS selectors to XPath expressions

php-symfony-debug/xenial,xenial 2.7.10-0ubuntu2 all
  tools to make debugging of PHP code easier

php-symfony-debug-bundle/xenial,xenial 2.7.10-0ubuntu2 all
  debugging tools for the Symfony framework

php-symfony-dependency-injection/xenial,xenial 2.7.10-0ubuntu2 all
  standardize and centralize construction of objects

php-symfony-doctrine-bridge/xenial,xenial 2.7.10-0ubuntu2 all
  integration for Doctrine with Symfony Components

php-symfony-dom-crawler/xenial,xenial 2.7.10-0ubuntu2 all
  ease DOM navigation for HTML and XML documents

php-symfony-event-dispatcher/xenial,xenial 2.7.10-0ubuntu2 all
  dispatch events and listen to them

php-symfony-expression-language/xenial,xenial 2.7.10-0ubuntu2 all
  compile and evaluate expressions

php-symfony-filesystem/xenial,xenial 2.7.10-0ubuntu2 all
  basic filesystem utilities

php-symfony-finder/xenial,xenial 2.7.10-0ubuntu2 all
  find files and directories

php-symfony-form/xenial,xenial 2.7.10-0ubuntu2 all
  create HTML forms and process request data

php-symfony-framework-bundle/xenial,xenial 2.7.10-0ubuntu2 all
  basic, robust and flexible MVC framework

php-symfony-http-foundation/xenial,xenial 2.7.10-0ubuntu2 all
  object-oriented layer for the HTTP specification

php-symfony-http-kernel/xenial,xenial 2.7.10-0ubuntu2 all
  building blocks for flexible and fast HTTP-based frameworks

php-symfony-intl/xenial,xenial 2.7.10-0ubuntu2 all
  limited replacement layer for the PHP extension intl

php-symfony-locale/xenial,xenial 2.7.10-0ubuntu2 all
  deprecated replacement layer for the PHP extension intl

php-symfony-monolog-bridge/xenial,xenial 2.7.10-0ubuntu2 all
  integration for Monolog with Symfony Components

php-symfony-options-resolver/xenial,xenial 2.7.10-0ubuntu2 all
  configure objects with option arrays

php-symfony-phpunit-bridge/xenial,xenial 2.7.10-0ubuntu2 all
  integration for PHPUnit with Symfony Components

php-symfony-process/xenial,xenial 2.7.10-0ubuntu2 all
  execute commands in sub-processes

php-symfony-property-access/xenial,xenial 2.7.10-0ubuntu2 all
  read from and write to an object or array

php-symfony-proxy-manager-bridge/xenial,xenial 2.7.10-0ubuntu2 all
  integration for ProxyManager with Symfony Components

php-symfony-routing/xenial,xenial 2.7.10-0ubuntu2 all
  associate a request with code that generates a response

php-symfony-security/xenial,xenial 2.7.10-0ubuntu2 all
  infrastructure for sophisticated authorization systems

php-symfony-security-bundle/xenial,xenial 2.7.10-0ubuntu2 all
  configurable security system for the Symfony framework

php-symfony-serializer/xenial,xenial 2.7.10-0ubuntu2 all
  convert PHP objects into specific formats and vice versa

php-symfony-stopwatch/xenial,xenial 2.7.10-0ubuntu2 all
  profile PHP code

php-symfony-swiftmailer-bridge/xenial,xenial 2.7.10-0ubuntu2 all
  integration for Swift Mailer with Symfony Components

php-symfony-templating/xenial,xenial 2.7.10-0ubuntu2 all
  tools needed to build a template system

php-symfony-translation/xenial,xenial 2.7.10-0ubuntu2 all
  tools to internationalize an application

php-symfony-twig-bridge/xenial,xenial 2.7.10-0ubuntu2 all
  integration for Twig with Symfony Components

php-symfony-twig-bundle/xenial,xenial 2.7.10-0ubuntu2 all
  configurable integration of Twig with the Symfony framework

php-symfony-validator/xenial,xenial 2.7.10-0ubuntu2 all
  tools to validate classes

php-symfony-var-dumper/xenial,xenial 2.7.10-0ubuntu2 all
  Symfony mechanism for exploring and dumping PHP variables

php-symfony-web-profiler-bundle/xenial,xenial 2.7.10-0ubuntu2 all
  collect requests information for analysis and debugging

php-symfony-yaml/xenial,xenial 2.7.10-0ubuntu2 all
  convert YAML to PHP arrays and the other way around

php-tcpdf/xenial,xenial 6.0.093+dfsg-1ubuntu1 all
  PHP class for generating PDF files on-the-fly

php-text-captcha/xenial,xenial 1.0.2-2ubuntu1 all
  Generation of CAPTCHAs

php-text-figlet/xenial,xenial 1.0.2-3build1 all
  PEAR module for rendering text using FIGlet fonts

php-text-languagedetect/xenial 0.3.0-1build1 amd64
  Language detection class

php-text-password/xenial,xenial 1.2.0-1build1 all
  Creating passwords with PHP

php-text-template/xenial,xenial 1.2.1-1build2 all
  Simple template engine

php-text-wiki/xenial,xenial 1.2.1-1build1 all
  transform Wiki and BBCode markup into XHTML, LaTeX or plain text markup

php-tidy/xenial,xenial 1:7.0+35ubuntu6 all
  tidy module for PHP [default]

php-timer/xenial,xenial 1.0.7-1ubuntu1 all
  Utility class for timing

php-token-stream/xenial,xenial 1.4.8-1ubuntu1 all
  Wrapper around PHP's tokenizer extension

php-tokenreflection/xenial,xenial 1.4.0-2build1 all
  PHP reflection replacement

php-twig/xenial,xenial 1.23.1-1ubuntu4 all
  Flexible, fast, and secure template engine for php

php-twig-doc/xenial,xenial 1.23.1-1ubuntu4 all
  Twig template engine documentation

php-uuid/xenial 1.0.4-1 amd64
  PHP UUID extension

php-validate/xenial,xenial 0.8.5-4build1 all
  validation class

php-webmozart-assert/xenial,xenial 1.0.2-1build1 all
  Assertions to validate method input/output with nice error messages

php-wikidiff2/xenial 1.2+git03ea59f-1ubuntu3 amd64
  external diff engine for mediawiki

php-xajax/xenial,xenial 0.5-1ubuntu1 all
  A library to develop Ajax applications

php-xdebug/xenial 2.4.0-1 amd64
  Xdebug Module for PHP

php-xml/xenial,xenial 1:7.0+35ubuntu6 all
  DOM, SimpleXML, WDDX, XML, and XSL module for PHP [default]

php-xml-htmlsax3/xenial,xenial 3.0.0+really3.0.0-3 all
  SAX parser for HTML and other badly formed XML documents

php-xml-parser/xenial,xenial 1.3.6-1ubuntu1 all
  XML parsing class based on PHP's bundled expat

php-xml-rpc2/xenial,xenial 1.1.2-1build1 all
  PHP XML-RPC client/server library

php-xml-serializer/xenial,xenial 0.20.2-3ubuntu1 all
  swiss-army knife for reading and writing XML files

php-xml-svg/xenial 1.1.0-1build1 amd64
  XML_SVG API

php-xmlrpc/xenial,xenial 1:7.0+35ubuntu6 all
  XMLRPC-EPI module for PHP [default]

php-yac/xenial 2.0.0+0.9.2-1 amd64
  YAC (Yet Another Cache) for PHP

php-zend-code/xenial,xenial 3.0.1-1build1 all
  Zend Framework - Code component

php-zend-db/xenial,xenial 2.6.2-1build1 all
  Zend Framework - Db component

php-zend-eventmanager/xenial,xenial 2.6.2-1build1 all
  Zend Framework - EventManager component

php-zend-hydrator/xenial,xenial 1.0.0-1build1 all
  Zend Framework - Hydrator component

php-zend-search/xenial,xenial 2.0.0~rc6-1build1 all
  Zend Framework - ZendSearch component

php-zend-stdlib/xenial,xenial 2.7.5-1build1 all
  Zend Framework - Stdlib component

php-zend-xml/xenial,xenial 1.0.2-1build1 all
  Zend Framework - Xml component

php-zeta-base/xenial,xenial 1.9-2build1 all
  Zeta Components - Base package

php-zeta-console-tools/xenial,xenial 1.7-2ubuntu2 all
  Zeta Components - ConsoleTools package

php-zeta-unit-test/xenial,xenial 1.0.2-2ubuntu1 all
  Zeta Components - UnitTest package

php-zip/xenial,xenial 1:7.0+35ubuntu6 all
  Zip module for PHP [default]

php-zipstreamer/xenial,xenial 0.7-1ubuntu1 all
  Stream zip files without i/o overhead

php-zmq/xenial 1.1.3-3 amd64
  ZeroMQ messaging bindings for PHP

php7.0/xenial,xenial,now 7.0.4-7ubuntu2 all [installed,automatic]
  server-side, HTML-embedded scripting language (metapackage)

php7.0-bcmath/xenial 7.0.4-7ubuntu2 amd64
  Bcmath module for PHP

php7.0-bz2/xenial 7.0.4-7ubuntu2 amd64
  bzip2 module for PHP

php7.0-cgi/xenial 7.0.4-7ubuntu2 amd64
  server-side, HTML-embedded scripting language (CGI binary)

php7.0-cli/xenial,now 7.0.4-7ubuntu2 amd64 [installed,automatic]
  command-line interpreter for the PHP scripting language

php7.0-common/xenial,now 7.0.4-7ubuntu2 amd64 [installed,automatic]
  documentation, examples and common module for PHP

php7.0-curl/xenial 7.0.4-7ubuntu2 amd64
  CURL module for PHP

php7.0-dev/xenial 7.0.4-7ubuntu2 amd64
  Files for PHP7.0 module development

php7.0-enchant/xenial 7.0.4-7ubuntu2 amd64
  Enchant module for PHP

php7.0-fpm/xenial,now 7.0.4-7ubuntu2 amd64 [installed,automatic]
  server-side, HTML-embedded scripting language (FPM-CGI binary)

php7.0-gd/xenial 7.0.4-7ubuntu2 amd64
  GD module for PHP

php7.0-gmp/xenial 7.0.4-7ubuntu2 amd64
  GMP module for PHP

php7.0-imap/xenial 7.0.4-7ubuntu2 amd64
  IMAP module for PHP

php7.0-interbase/xenial 7.0.4-7ubuntu2 amd64
  Interbase module for PHP

php7.0-intl/xenial 7.0.4-7ubuntu2 amd64
  Internationalisation module for PHP

php7.0-json/xenial,now 7.0.4-7ubuntu2 amd64 [installed,automatic]
  JSON module for PHP

php7.0-ldap/xenial 7.0.4-7ubuntu2 amd64
  LDAP module for PHP

php7.0-mbstring/xenial 7.0.4-7ubuntu2 amd64
  MBSTRING module for PHP

php7.0-mcrypt/xenial 7.0.4-7ubuntu2 amd64
  libmcrypt module for PHP

php7.0-mysql/xenial 7.0.4-7ubuntu2 amd64
  MySQL module for PHP

php7.0-odbc/xenial 7.0.4-7ubuntu2 amd64
  ODBC module for PHP

php7.0-opcache/xenial,now 7.0.4-7ubuntu2 amd64 [installed,automatic]
  Zend OpCache module for PHP

php7.0-pgsql/xenial 7.0.4-7ubuntu2 amd64
  PostgreSQL module for PHP

php7.0-phpdbg/xenial 7.0.4-7ubuntu2 amd64
  server-side, HTML-embedded scripting language (PHPDBG binary)

php7.0-pspell/xenial 7.0.4-7ubuntu2 amd64
  pspell module for PHP

php7.0-readline/xenial,now 7.0.4-7ubuntu2 amd64 [installed,automatic]
  readline module for PHP

php7.0-recode/xenial 7.0.4-7ubuntu2 amd64
  recode module for PHP

php7.0-snmp/xenial 7.0.4-7ubuntu2 amd64
  SNMP module for PHP

php7.0-soap/xenial 7.0.4-7ubuntu2 amd64
  SOAP module for PHP

php7.0-sqlite3/xenial 7.0.4-7ubuntu2 amd64
  SQLite3 module for PHP

php7.0-sybase/xenial 7.0.4-7ubuntu2 amd64
  Sybase module for PHP

php7.0-tidy/xenial 7.0.4-7ubuntu2 amd64
  tidy module for PHP

php7.0-xml/xenial 7.0.4-7ubuntu2 amd64
  DOM, SimpleXML, WDDX, XML, and XSL module for PHP

php7.0-xmlrpc/xenial 7.0.4-7ubuntu2 amd64
  XMLRPC-EPI module for PHP

php7.0-xsl/xenial,xenial 7.0.4-7ubuntu2 all
  XSL module for PHP (dummy)

php7.0-zip/xenial 7.0.4-7ubuntu2 amd64
  Zip module for PHP

phpab/xenial,xenial 1.21.0-1ubuntu2 all
  lightweight PHP namespace aware autoload generator

phpbb3/xenial,xenial 3.0.14-1ubuntu1 all
  full-featured, skinnable non-threaded web forum

phpbb3-l10n/xenial,xenial 3.0.14-1ubuntu1 all
  additional language files for phpBB

phpcpd/xenial,xenial 2.0.2-1build1 all
  copy and paste detector (CPD) for PHP code

phpdox/xenial,xenial 0.8.1.1-1ubuntu1 all
  documentation generation framework and tool

phpgacl/xenial,xenial 3.3.7-7.3 all
  PHP Generic Access Control Lists

phpldapadmin/xenial,xenial 1.2.2-5.2ubuntu2 all
  web based interface for administering LDAP servers

phploc/xenial,xenial 3.0.0-1build1 all
  tool for quickly measuring the size of a PHP project

phpmd/xenial,xenial 2.3.2-1build1 all
  PHP Mess Detector

phpmyadmin/xenial,xenial 4:4.5.4.1-2ubuntu1 all
  MySQL web administration tool

phppgadmin/xenial,xenial 5.1+ds-1ubuntu1 all
  web-based administration tool for PostgreSQL

phpqrcode/xenial,xenial 1.1.4-1ubuntu1 all
  PHP library for generating two-dimensional barcodes

phpreports/xenial,xenial 0.5.0-1ubuntu1 all
  XML-based report generator for PHP

phpsysinfo/xenial,xenial 3.2.1-1ubuntu3 all
  PHP based host information

phpunit/xenial,xenial 5.1.3-1+ubuntu3 all
  Unit testing suite for PHP5

phpunit-code-unit-reverse-lookup/xenial,xenial 1.0.0-1build1 all
  look up what a line of code belongs to - PHPUnit component

phpunit-comparator/xenial,xenial 1.2.0-1ubuntu1 all
  functionality to compare PHP values for equality - PHPUnit component

phpunit-dbunit/xenial,xenial 2.0.2-1ubuntu1 all
  DbUnit port for PHP/PHPUnit to support database interaction testing

phpunit-diff/xenial,xenial 1.4.1-1ubuntu1 all
  diff implementation - stand-alone component from PHPUnit

phpunit-environment/xenial,xenial 1.3.3-1ubuntu1 all
  functionality to handle HHVM/PHP environments - PHPUnit component

phpunit-exporter/xenial,xenial 1.2.1-1ubuntu1 all
  export variables for visualization - PHPUnit component

phpunit-git/xenial,xenial 2.0.1-2build1 all
  Simple wrapper for Git

phpunit-global-state/xenial,xenial 1.1.1-1ubuntu1 all
  snapshotting of global state - PHPUnit component

phpunit-mock-object/xenial,xenial 3.0.6-1+ubuntu1 all
  Mock Object library for PHPUnit

phpunit-object-enumerator/xenial,xenial 1.0.0-1build1 all
  enumerate all referenced objects - PHPUnit component

phpunit-recursion-context/xenial,xenial 1.0.2-1ubuntu1 all
  recursively process PHP variables - PHPUnit component

phpunit-resource-operations/xenial,xenial 1.0.0-1build1 all
  provide a list of PHP built-in functions that operate on resources

phpunit-version/xenial,xenial 1.0.6-1build1 all
  Library that helps with managing the version number of Git-hosted PHP projects

phpwebcounter/xenial,xenial 1.0-3ubuntu1 all
  simple and light web hit counter

phpwebcounter-extra/xenial,xenial 20071108-3 all
  extra graphical numbers to PHP Web Counter

pinba-engine-mysql/xenial-updates,xenial-updates,xenial-security,xenial-security 1.1.0-1ubuntu1.1 all
  realtime statistics server for PHP using MySQL (metapackage)

pinba-engine-mysql-5.7/xenial-updates,xenial-security 1.1.0-1ubuntu1.1 amd64
  realtime statistics server for PHP using MySQL as a read-only interface

pkg-php-tools/xenial,xenial 1.32ubuntu2 all
  various packaging tools and scripts for PHP packages

poppassd/xenial 1.8.5-4 amd64
  password change server for Eudora and NUPOP

postfix-cluebringer-webui/xenial,xenial 2.0.10-1ubuntu1 all
  anti-spam plugin for Postfix

postfixadmin/xenial,xenial 2.3.7-1ubuntu1 all
  Virtual mail hosting interface for Postfix

postgresql-9.5-pgtap/xenial,xenial 0.95.0-3 all
  Unit testing framework extension for PostgreSQL 9.5

prayer/xenial 1.3.5-dfsg1-3 amd64
  standalone IMAP-based webmail server

prayer-accountd/xenial 1.3.5-dfsg1-3 amd64
  account management daemon for Prayer

prayer-templates-dev/xenial 1.3.5-dfsg1-3 amd64
  tools for compiling Prayer templates

prayer-templates-src/xenial,xenial 1.3.5-dfsg1-3 all
  templates for customizing Prayer Webmail

preprocess/xenial,xenial 1.1.0+ds-1build1 all
  portable multi-language file preprocessor

psi-plus/xenial 0.16.330-1build3 amd64
  Qt-based XMPP/Jabber client (basic version)

psi-plus-common/xenial,xenial 0.16.330-1build3 all
  common files for Psi+

psi-plus-dbg/xenial 0.16.330-1build3 amd64
  Qt-based XMPP/Jabber client (basic version) [debug symbols]

psi-plus-l10n/xenial,xenial 0.16.330-1 all
  localization files for Psi+

psi-plus-plugins/xenial 0.16.330-1build3 amd64
  plugins for Psi+

psi-plus-plugins-dbg/xenial 0.16.330-1build3 amd64
  plugins for Psi+ [debug symbols]

psi-plus-skins/xenial,xenial 0.16.330-1build3 all
  skins for Psi+

psi-plus-sounds/xenial,xenial 0.16.330-1build3 all
  sound files for Psi+

psi-plus-webkit/xenial 0.16.330-1build3 amd64
  Qt-based XMPP/Jabber client (WebKit version)

psi-plus-webkit-dbg/xenial 0.16.330-1build3 amd64
  Qt-based XMPP/Jabber client (WebKit version) [debug symbols]

python-adodb/xenial,xenial 2.10-2 all
  A database abstraction library for python

python-cheetah/xenial 2.4.4-3.fakesyncbuild1 amd64
  text-based template engine and Python code generator

python-django-extdirect/xenial,xenial 0.10-1 all
  Ext.Direct serverside implementation for Django

python-guzzle-sphinx-theme/xenial,xenial 0.7.10-1 all
  Sphinx theme used by Guzzle

python-htmltmpl/xenial,xenial 1.22-10.1 all
  Templating engine for separation of code and HTML

python-kid/xenial,xenial 0.9.6-3 all
  simple Pythonic template language for XML based vocabularies

python-ming/xenial 1:0.4.5-1.2ubuntu7 amd64
  Ming (SWF) module for Python

python-phply/xenial,xenial 0.9.1-4 all
  PHP parser written in Python using PLY

python-phpserialize/xenial,xenial 1.3-1 all
  Python port of PHP serialize and unserialize functions (Python 2)

python-pysimplesoap/xenial,xenial 1.16-1 all
  simple and lightweight SOAP Library (Python 2)

python-sphinxcontrib.phpdomain/xenial,xenial 0.1.4-2 all
  Sphinx "phpdomain" extension

python-templayer/xenial,xenial 1.5.1-2 all
  layered template library for Python

python-vatnumber/xenial,xenial 1:1.2-5 all
  Python module to validate VAT numbers (implemented in Python 2)

python3-phply/xenial,xenial 0.9.1-4 all
  PHP parser written in Python 3 using PLY

python3-phpserialize/xenial,xenial 1.3-1 all
  Python port of PHP serialize and unserialize functions (Python 3)

python3-pysimplesoap/xenial,xenial 1.16-1 all
  simple and lightweight SOAP Library (Python 3)

python3-vatnumber/xenial,xenial 1:1.2-5 all
  Python module to validate VAT numbers (implemented in Python 3)

r-cran-brew/xenial 1.0-6-1 amd64
  GNU R templating framework for report generation

r-cran-nloptr/xenial 1.0.4-1 amd64
  GNU R package for interface to NLopt

r-cran-stringi/xenial 1.0-1-1 amd64
  GNU R character string processing facilities

raintpl/xenial,xenial 2.7.2-1 all
  easy and fast template engine for PHP

refdb-clients/xenial 1.0.2-3ubuntu1 amd64
  Reference database and bibliography tool - clients

refdb-doc/xenial,xenial 1.0.2-3ubuntu1 all
  Reference database and bibliography tool - doc

refdb-server/xenial 1.0.2-3ubuntu1 amd64
  Reference database and bibliography tool - sql server

refdb-www/xenial,xenial 1.0.2-3ubuntu1 all
  Reference database and bibliography tool - www server

rhythmbox-ampache/xenial,xenial 0.11.1+svn43-1 all
  play audio streams from an Ampache server

rofs/xenial 2006.11.28-2.1ubuntu1 amd64
  Read-Only Filesystem for FUSE

rtgui/xenial,xenial 0.2.81-5ubuntu1 all
  Web based front-end for rTorrent

ruby-bluefeather/xenial,xenial 0.41-4 all
  Extend Markdown Converter written in Ruby

ruby-coderay/xenial,xenial 1.1.1-1 all
  Ruby library for syntax highlighting

ruby-erubis/xenial,xenial 2.7.0-3 all
  fast and extensible eRuby implementation which supports multi-language

ruby-haml-contrib/xenial,xenial 1.0.0.1-2 all
  Elegant, structured XHTML/XML templating engine - addons

sbnc-php-dev/xenial,xenial 1.3.9-3ubuntu1 all
  IRC proxy for multiple users (PHP classes)

sbox-dtc/xenial 1.11.7-1 amd64
  CGI chroot wrapper script for safer hosting environment

scummvm/xenial 1.7.0+dfsg-2ubuntu1 amd64
  engine for several graphical adventure games

scummvm-data/xenial,xenial 1.7.0+dfsg-2ubuntu1 all
  engine for several graphical adventure games (data files)

simpleid/xenial,xenial 0.8.1-14ubuntu1 all
  simple OpenID provider implemented in PHP

simpleid-ldap/xenial,xenial 1.0.1-1ubuntu1 all
  simple OpenID provider implemented in PHP - LDAP plugin

simpleid-store-dynalogin/xenial,xenial 1.0.0-3ubuntu3 all
  two-factor HOTP/TOTP authentication - OpenID provider

simplesamlphp/xenial,xenial 1.14.0-1ubuntu2 all
  Authentication and federation application supporting several protocols

slbackup-php/xenial,xenial 0.4.5-2ubuntu1 all
  Web-based administration tool for slbackup

sloccount/xenial 2.26-5.1 amd64
  programs for counting physical source lines of code (SLOC)

smarty-gettext/xenial,xenial 1.2.0-1ubuntu1 all
  Gettext plugin enabling internationalization in Smarty

smarty-validate/xenial,xenial 3.0.3-2 all
  Server-side form validation plugin for Smarty

smarty3/xenial,xenial 3.1.21-1ubuntu1 all
  Template engine for PHP

smoke-dev-tools/xenial 4:4.14.3-1 amd64
  SMOKE development tools

smokegen-dbg/xenial 4:4.14.3-1 amd64
  SMOKE development tools -- debug symbols

splash/xenial 2.6.0-1 amd64
  Visualisation tool for Smoothed Particle Hydrodynamics simulation

sqlformat/xenial,xenial 0.1.18-1 all
  SQL formatting utility

squirrelmail/xenial,xenial 2:1.4.23~svn20120406-2ubuntu1 all
  Webmail for nuts

squirrelmail-compatibility/xenial,xenial 2.0.16-1 all
  SquirrelMail plugin: Let other plugins work with older/newer SM versions

squirrelmail-lockout/xenial,xenial 1.7-2 all
  SquirrelMail plugin: Disallow access to users/domains

squirrelmail-logger/xenial,xenial 2.3.1-1 all
  SquirrelMail plugin: Add logging functionality to your webmail interface

squirrelmail-quicksave/xenial,xenial 2.4.5-1 all
  SquirrelMail plugin: Auto-save messages while composing

squirrelmail-secure-login/xenial,xenial 1.4-3 all
  SquirrelMail plugin: Force users to use SSL encrypted connections

squirrelmail-sent-confirmation/xenial,xenial 1.6-2 all
  SquirrelMail plugin: display a confimation message after sending mails

squirrelmail-spam-buttons/xenial,xenial 2.3.1-1 all
  SquirrelMail plugin: Place "Spam" buttons on the mailbox message list page

squirrelmail-viewashtml/xenial,xenial 3.8-3 all
  SquirrelMail plugin: View mails as HTML

srg/xenial 1.3.6-2ubuntu1 amd64
  Fast, Flexible and Detailed log analysis for the Squid Proxy

swig/xenial 3.0.8-0ubuntu3 amd64
  Generate scripting interfaces to C/C++ code

swig2.0/xenial 2.0.12-1ubuntu4 amd64
  Generate scripting interfaces to C/C++ code

swig3.0/xenial 3.0.8-0ubuntu3 amd64
  Generate scripting interfaces to C/C++ code

synergy/xenial 1.6.2-0ubuntu2 amd64
  Share mouse, keyboard and clipboard over the network

therion-doc/xenial,xenial 5.3.16-7build2 all
  Documentation for Therion Cave surveying software

tntnet/xenial 2.2.1-2 amd64
  modular, multithreaded web application server for C++

tntnet-demos/xenial 2.2.1-2 amd64
  demo web applications for Tntnet

tntnet-doc/xenial,xenial 2.2.1-2 all
  documentation for Tntnet

tweeper/xenial,xenial 0.4-1ubuntu1 all
  web scraper to convert supported websites (e.g. Twitter.com) to RSS

txt2regex/xenial,xenial 0.8-4 all
  A Regular Expression "wizard", all written with bash2 builtins

ukolovnik/xenial,xenial 1.4-2ubuntu1 all
  Simple todo manager using PHP and MySQL

universalindentgui/xenial 1.2.0-1build5 amd64
  GUI frontend for several code beautifiers

uphpmvault/xenial 0.8 amd64
  upload recovery images to HP MediaVault2 via Ethernet

uwsgi-app-integration-plugins/xenial 2.0.12-5ubuntu3 amd64
  plugins for integration of uWSGI and application

uwsgi-plugin-php/xenial 2.0.12-5ubuntu3 amd64
  PHP plugin for uWSGI

vdr-plugin-infosatepg/xenial 0.0.12-6 amd64
  include TechniSat EPG data via satelite in vdr

velocity/xenial,xenial 1.7-4 all
  Java-based template engine for web application

vim-syntastic/xenial,xenial 3.7.0-1 all
  Syntax checking hacks for vim

vim-youcompleteme/xenial,xenial 0+20160327+git1b76af4-0ubuntu1 all
  fast, as-you-type, fuzzy-search code completion engine for Vim

wapiti/xenial,xenial 2.3.0+dfsg-4 all
  web application vulnerability scanner

watchcatd/xenial 1.2.1-3 amd64
  Process monitoring daemon

wulf2html/xenial,xenial 2.6.0-0ubuntu3 all
  filter for generating HTML logs from wulflogger data

wulflogger/xenial 2.6.0-0ubuntu3 amd64
  extract cluster node data from remote xmlsysd daemons

wulfstat/xenial 2.6.0-0ubuntu3 amd64
  curses based wulfware for monitoring cluster nodes

wwwconfig-common/xenial,xenial 0.2.2 all
  Debian web auto configuration

xine-ui/xenial 0.99.9-1.2 amd64
  the xine video player, user interface

xjed/xenial 1:0.99.19-4 amd64
  editor for programmers (x11 version)

xmlsysd/xenial 2.6.0-0ubuntu3 amd64
  wulfware daemon to extract data from cluster nodes

yasat/xenial,xenial 839-1 all
  simple stupid audit tool

yate-scripts/xenial 5.4.0-1-1ubuntu2 amd64
  PHP scripts for YATE

yhsm-validation-server/xenial,xenial 1.0.4l-1 all
  Validation server using YubiHSM

yrmcds/xenial 1.1.5-1 amd64
  memcached compatible KVS with master/slave replication

yubikey-ksm/xenial,xenial 1.15-4ubuntu1 all
  Key Storage Module for YubiKey One-Time Password (OTP) tokens

yubikey-server-c/xenial 0.5-1build2 amd64
  Yubikey validation server

yubikey-val/xenial,xenial 2.33-1ubuntu1 all
  One-Time Password (OTP) validation server for YubiKey tokens

zabbix-frontend-php/xenial,xenial 1:2.4.7+dfsg-2ubuntu2 all
  network monitoring solution - PHP front-end

zend-framework/xenial,xenial 1.11.11-0ubuntu3 all
  a simple, straightforward, open-source software framework for PHP 5

zend-framework-bin/xenial,xenial 1.11.11-0ubuntu3 all
  a simple, straightforward, open-source software framework for PHP 5

kushal at kushal-VirtualBox:/etc/apache2/mods-available$ sudo apt search libapache2-mod-php
Sorting... Done
Full Text Search... Done
libapache2-mod-php/xenial,xenial 1:7.0+35ubuntu6 all
  server-side, HTML-embedded scripting language (Apache 2 module) (default)

libapache2-mod-php7.0/xenial 7.0.4-7ubuntu2 amd64
  server-side, HTML-embedded scripting language (Apache 2 module)

php7.0-fpm/xenial,now 7.0.4-7ubuntu2 amd64 [installed,automatic]
  server-side, HTML-embedded scripting language (FPM-CGI binary)

kushal at kushal-VirtualBox:/etc/apache2/mods-available$ sudo apt install libapache2-mod-php
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following additional packages will be installed:
  libapache2-mod-php7.0
Suggested packages:
  php-pear
The following NEW packages will be installed:
  libapache2-mod-php libapache2-mod-php7.0
0 upgraded, 2 newly installed, 0 to remove and 33 not upgraded.
Need to get 1,222 kB of archives.
After this operation, 4,311 kB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 libapache2-mod-php7.0 amd64 7.0.4-7ubuntu2 [1,219 kB]
Get:2 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 libapache2-mod-php all 1:7.0+35ubuntu6 [2,960 B]
Fetched 1,222 kB in 1s (984 kB/s)        
Selecting previously unselected package libapache2-mod-php7.0.
(Reading database ... 209663 files and directories currently installed.)
Preparing to unpack .../libapache2-mod-php7.0_7.0.4-7ubuntu2_amd64.deb ...
Unpacking libapache2-mod-php7.0 (7.0.4-7ubuntu2) ...
Selecting previously unselected package libapache2-mod-php.
Preparing to unpack .../libapache2-mod-php_1%3a7.0+35ubuntu6_all.deb ...
Unpacking libapache2-mod-php (1:7.0+35ubuntu6) ...
Setting up libapache2-mod-php7.0 (7.0.4-7ubuntu2) ...

Creating config file /etc/php/7.0/apache2/php.ini with new version
Module mpm_event disabled.
Enabling module mpm_prefork.
apache2_switch_mpm Switch to prefork
apache2_invoke: Enable module php7.0
Setting up libapache2-mod-php (1:7.0+35ubuntu6) ...
kushal at kushal-VirtualBox:/etc/apache2/mods-available$ ls -a
.                   authn_dbd.load        autoindex.load      dav_lock.load    headers.load              log_forensic.load  negotiation.load     proxy_html.load      session_crypto.load    status.load
..                  authn_dbm.load        buffer.load         dbd.load         heartbeat.load            lua.load           php7.0.conf          proxy_http.load      session_dbd.load       substitute.load
access_compat.load  authn_file.load       cache_disk.conf     deflate.conf     heartmonitor.load         macro.load         php7.0.load          proxy.load           session.load           suexec.load
actions.conf        authn_socache.load    cache_disk.load     deflate.load     ident.load                mime.conf          proxy_ajp.load       proxy_scgi.load      setenvif.conf          unique_id.load
actions.load        authnz_fcgi.load      cache.load          dialup.load      include.load              mime.load          proxy_balancer.conf  proxy_wstunnel.load  setenvif.load          userdir.conf
alias.conf          authnz_ldap.load      cache_socache.load  dir.conf         info.conf                 mime_magic.conf    proxy_balancer.load  ratelimit.load       slotmem_plain.load     userdir.load
alias.load          authz_core.load       cgid.conf           dir.load         info.load                 mime_magic.load    proxy.conf           reflector.load       slotmem_shm.load       usertrack.load
allowmethods.load   authz_dbd.load        cgid.load           dump_io.load     lbmethod_bybusyness.load  mpm_event.conf     proxy_connect.load   remoteip.load        socache_dbm.load       vhost_alias.load
asis.load           authz_dbm.load        cgi.load            echo.load        lbmethod_byrequests.load  mpm_event.load     proxy_express.load   reqtimeout.conf      socache_memcache.load  xml2enc.load
auth_basic.load     authz_groupfile.load  charset_lite.load   env.load         lbmethod_bytraffic.load   mpm_prefork.conf   proxy_fcgi.load      reqtimeout.load      socache_shmcb.load
auth_digest.load    authz_host.load       data.load           expires.load     lbmethod_heartbeat.load   mpm_prefork.load   proxy_fdpass.load    request.load         speling.load
auth_form.load      authz_owner.load      dav_fs.conf         ext_filter.load  ldap.conf                 mpm_worker.conf    proxy_ftp.conf       rewrite.load         ssl.conf
authn_anon.load     authz_user.load       dav_fs.load         file_cache.load  ldap.load                 mpm_worker.load    proxy_ftp.load       sed.load             ssl.load
authn_core.load     autoindex.conf        dav.load            filter.load      log_debug.load            negotiation.conf   proxy_html.conf      session_cookie.load  status.conf
kushal at kushal-VirtualBox:/etc/apache2/mods-available$ sudo nano php7.0.conf 
kushal at kushal-VirtualBox:/etc/apache2/mods-available$ sudo nano php7.0.conf 
kushal at kushal-VirtualBox:/etc/apache2/mods-available$ sudo a2enmod userdir
Enabling module userdir.
To activate the new configuration, you need to run:
  service apache2 restart
kushal at kushal-VirtualBox:/etc/apache2/mods-available$ service apache2 restart
kushal at kushal-VirtualBox:/etc/apache2/mods-available$ cd ~/
kushal at kushal-VirtualBox:~$ ls
Desktop  Documents  Downloads  examples.desktop  Music  Pictures  Public  Templates  Videos
kushal at kushal-VirtualBox:~$ mkdir public_html
kushal at kushal-VirtualBox:~$ ls
Desktop  Documents  Downloads  examples.desktop  Music  Pictures  Public  public_html  Templates  Videos
kushal at kushal-VirtualBox:~$ cd public_html/
kushal at kushal-VirtualBox:~/public_html$ nano index.php
kushal at kushal-VirtualBox:~/public_html$


More information about the ubuntu-doc mailing list