This file is indexed.

/usr/share/doc/php5-twig/README.Debian is in php5-twig 1.16.2-1+deb8u1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
1) About the Twig php5 C extension
==================================

The Twig template engine for php optionally can make use of a php5 extension,
written in C, that enhances its performance. This extension does not replace
Twig's php code, since it only provides a C implementation of the method
Twig_Template::getAttribute().
For further details regarding the Twig template engine, check the description
of package twig or visit Twig's homepage at <http://twig.sensiolabs.org/>.


2) Twig's C extension in Debian
===============================

2.1) The name of the C extension in Debian
------------------------------------------
Twig's php5 C extension is build as twig.so.

2.2) Enabling / disabling the C extension
-----------------------------------------
In Debian you can enable or disable the C extension with the commands
php5enmod and php5dismod. Please keep in mind that after using those you
might need to restart your application server (e.g. Apache) to make it aware
of the change. By default the extension is enabled after installing the
package php5-twig.

2.2.1) Disabling the Twig C extension
-------------------------------------
To disable the Twig C extension run:
 # php5dismod twig

2.2.2) Enabling the Twig C extension
------------------------------------
To enable the Twig C extension run:
 # php5enmod twig


 -- Daniel Beyer <dabe@deb.ymc.ch>  Sun, 30 Jun 2013 18:02:49 +0200