Home
last modified time | relevance | path

Searched refs:extension (Results 201 – 225 of 369) sorted by path

12345678910>>...15

/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/
H A DTest.php255 foreach ($required['extensions'] as $extension) {
256 if (isset($required['extension_versions'][$extension])) {
259 if (!extension_loaded($extension)) {
260 $missing[] = sprintf('Extension %s is required.', $extension);
266 foreach ($required['extension_versions'] as $extension => $required) {
267 $actualVersion = phpversion($extension);
271 …$missing[] = sprintf('Extension %s %s %s is required.', $extension, $operator, $required['version'…
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/TextUI/
H A Dphar-extension-suppressed.phpt2 phpunit --configuration tests/_files/phpunit-example-extension
6 $_SERVER['argv'][2] = __DIR__ . '/../_files/phpunit-example-extension';
H A Dphar-extension.phpt2 phpunit --configuration tests/_files/phpunit-example-extension
6 $_SERVER['argv'][2] = __DIR__ . '/../_files/phpunit-example-extension';
14 Configuration: %s/phpunit-example-extension/phpunit.xml
15 Extension: %s/phpunit-example-extension/tools/phpunit.d/phpunit-example-extension-1.0.0.phar
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/_files/phpunit-example-extension/tools/phpunit.d/
H A Dphpunit-example-extension-1.0.0.phar2 require_once 'phar://phpunit-example-extension-1.0.0.phar' . '/phpunit-example-extension/TestCaseTr…
4 …nit-example-extension-1.0.0.phar�������LICENSE���78X������������� ���manifest.xml7���78X7�…
39 <contains name="phpunit/phpunit-example-extension" version="1.0.0" type="extension">
40 <extension for="phpunit/phpunit" compatible="^5.7"/>
45 …BSD-3-Clause" url="https://github.com/sebastianbergmann/phpunit-example-extension/blob/master/LICE…
/plugin/findologicxmlexport/vendor/symfony/polyfill-ctype/
H A DREADME.md4 …s component provides `ctype_*` functions to users who run php versions without the ctype extension.
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/Fixtures/
H A DsfMergeKey.yml6 YAML spec, but a widely implemented extension. See the following URL for
/plugin/findologicxmlexport/vendor/twig/extensions/
H A DREADME.rst7 Fork this repository, add your extension, and request a pull.
/plugin/findologicxmlexport/vendor/twig/extensions/doc/
H A Darray.rst12 the extension to Twig::
H A Ddate.rst4 The *Date* extension provides the ``time_diff`` filter.
6 You need to register this extension before using the ``time_diff`` filter::
H A Di18n.rst7 The ``i18n`` extension adds `gettext`_ support to Twig. It defines one tag,
12 You need to register this extension before using the ``trans`` block::
16 Note that you must configure the ``gettext`` extension before rendering any
33 The ``i18n`` extension only works if the PHP `gettext`_ extension is
137 If you use the Twig I18n extension, you will probably need to extract the
H A Dintl.rst10 the extension to Twig::
H A Dtext.rst4 The Text extension provides the following filters:
13 the extension to Twig::
/plugin/findologicxmlexport/vendor/twig/extensions/test/Twig/Tests/Extension/
H A DDateTest.php32 $extension = new Twig_Extensions_Extension_Date();
33 $this->assertEquals($expected, $extension->diff($this->env, $date, $now));
38 $extension = new Twig_Extensions_Extension_Date();
39 …$this->assertRegExp('/^[0-9]+ (second|minute|hour|day|month|year)s* ago$/', $extension->diff($this…
47 $extension = new Twig_Extensions_Extension_Date();
48 …$this->assertEquals($expected, $extension->diff($this->env, new DateTime($date), new DateTime($now…
53 $extension = new Twig_Extensions_Extension_Date();
54 …$this->assertRegExp('/^[0-9]+ (second|minute|hour|day|month|year)s* ago$/', $extension->diff($this…
68 $extension = new Twig_Extensions_Extension_Date($translator);
69 $extension->diff($this->env, $date, $now);
/plugin/findologicxmlexport/vendor/twig/twig/
H A D.travis.yml31 …- if [ "$TWIG_EXT" == "yes" ]; then echo "extension=twig.so" >> `php --ini | grep "Loaded Configur…
H A DCHANGELOG148 * fixed C89 compat for the C extension
342 * fixed memory leaks in the C extension
428 * fixed the C extension compilation on Windows
432 * fixed a crash of the C extension on an edge case
437 * fixed crashes of the C extension on some edge cases
522 * fixed C extension compilation on Windows
618 * fixed Twig C extension
849 * made the Escaper extension enabled by default
935 * added a sandbox tag in the sandbox extension
957 * added support for gettext via the `i18n` extension
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dadvanced.rst18 share them with others, you should then create an extension as described
26 extension (see the next section of this chapter).
29 different possible extension points and when to use them.
37 To understand why Twig exposes so many extension points, let's see how to
59 the most complex extension point of Twig.
590 An extension is a class that implements the following interface::
655 * Returns the name of the extension.
657 * @return string The extension name
678 return a unique identifier for the extension.
751 Adding a tag in an extension can be done by overriding the
[all …]
H A Dadvanced_legacy.rst18 share them with others, you should then create an extension as described
26 or package your code into an extension (see the next section of this
30 different possible extension points and when to use them.
38 To understand why Twig exposes so many extension points, let's see how to
60 the most complex extension point of Twig.
221 extension class.
534 An extension is a class that implements the following interface::
595 * Returns the name of the extension.
597 * @return string The extension name
701 on the extension class::
[all …]
H A Dapi.rst140 the template filename extension (this strategy does not incur any overhead at
330 extension is as simple as using the ``addExtension()`` method::
365 The ``core`` extension defines all the core features of Twig:
375 The ``escaper`` extension adds automatic output escaping to Twig. It defines a
378 When creating the escaper extension, you can switch on or off the global
473 The ``sandbox`` extension can be used to evaluate untrusted code. Access to
511 the extension constructor::
519 The Profile extension was added in Twig 1.18.
521 The ``profiler`` extension enables a profiler for Twig templates; it should
549 The ``optimizer`` extension optimizes the node tree before compilation::
H A Ddeprecated.rst38 * As of Twig 1.x, the ability to remove an extension is deprecated and the
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
H A Dconvert_encoding.rst17 This filter relies on the `iconv`_ or `mbstring`_ extension, so one of
H A Ddate.rst51 ``core`` extension instance. The first argument is the default format for
H A Descape.rst94 ``core`` extension instance. The first argument is the escaper name (to be
H A Dnumber_format.rst36 These defaults can be easily changed through the core extension:
/plugin/findologicxmlexport/vendor/twig/twig/doc/functions/
H A Ddate.rst39 the ``core`` extension instance:
H A Ddump.rst18 ``\Twig\Extension\DebugExtension`` extension explicitly when creating your Twig

12345678910>>...15