Home
last modified time | relevance | path

Searched +full:php +full:- +full:versions (Results 1 – 25 of 41) sorted by relevance

12

/dokuwiki/.github/workflows/
H A DtestWindows.yml5 branches-ignore:
6 - stable
7 - old-stable
11 group: ${{ github.workflow }}-${{ github.ref }}
12 cancel-in-progress: true
19 name: PHP ${{ matrix.php-versions }}
20 runs-on: windows-latest
25 php-versions: ['8.2', '8.3', '8.4', '8.5']
26 fail-fast: false
29 - name: Checkout
[all …]
H A DtestLinux.yml5 branches-ignore:
6 - stable
7 - old-stable
11 group: ${{ github.workflow }}-${{ github.ref }}
12 cancel-in-progress: true
19 name: PHP ${{ matrix.php-versions }}
20 runs-on: ubuntu-latest
25 php-versions: ['8.2', '8.3', '8.4', '8.5']
26 fail-fast: false
34 - 3306:3306
[all …]
/dokuwiki/vendor/composer/
H A DInstalledVersions.php1 <?php
21 * See also https://getcomposer.org/doc/07-runtime.md#installed-versions
23 * To require its presence, you can require `composer-runtime-api ^2.0`
37-var array{root: array{name: string, pretty_version: string, version: string, reference: string|nu…
53-var array<string, array{root: array{name: string, pretty_version: string, version: string, refere…
61 * @psalm-return list<string>
67 $packages[] = array_keys($installed['versions']);
82 * @psalm-return list<string>
89 foreach ($installed['versions'] as $name => $package) {
111 if (isset($installed['versions'][$packageName])) {
[all …]
H A Dinstalled.php1 <?php return array(
4 'pretty_version' => 'dev-master',
5 'version' => 'dev-master',
12 'versions' => array(
13 'aziraphale/email-address-validator' => array(
18 'install_path' => __DIR__ . '/../aziraphale/email-address-validator',
23 'pretty_version' => 'dev-master',
24 'version' => 'dev-master',
32 'pretty_version' => 'dev-master',
33 'version' => 'dev-master',
[all …]
/dokuwiki/inc/
H A Dcompatibility.php1 <?php
6 * This file contains a few functions that might be missing from the PHP build
19 …if (!is_string($text)) return false; #FIXME original treats between -128 and 255 inclusive as ASCI…
35 …if (!is_string($text)) return false; #FIXME original treats between -128 and 255 inclusive as ASCI…
43 * work around for PHP compiled against certain zlib versions #865
45 * @link http://stackoverflow.com/questions/23417519/php-zlib-gzopen-not-exists
60 * work around for PHP compiled against certain zlib versions #865
62 * @link http://stackoverflow.com/questions/23417519/php-zlib-gzopen-not-exists
77 * work around for PHP compiled against certain zlib versions #865
79 * @link http://stackoverflow.com/questions/23417519/php-zlib-gzopen-not-exists
H A Dconfutils.php1 <?php
45 return [$ext, 'application/octet-stream', true];
134 * Returns the jquery script URLs for the versions defined in lib/scripts/jquery/versions
144 $versions = [];
145 $lines = file(DOKU_INC . 'lib/scripts/jquery/versions');
152 $versions[$key] = $val;
156 $data = ['versions' => $versions, 'src' => &$src];
158 if ($event->advise_before()) {
160 $jqmod = md5(implode('-', $versions));
161 $src[] = DOKU_BASE . 'lib/exe/jquery.php' . '?tseed=' . $jqmod;
[all …]
/dokuwiki/_test/tests/Remote/
H A DApiCoreTest.php1 <?php
33 $this->oldAuthAcl = $AUTH_ACL;
34 $this->userinfo = $USERINFO;
41 $this->remote = new Api();
51 $USERINFO = $this->userinfo;
52 $AUTH_ACL = $this->oldAuthAcl;
70 $this->assertEquals($expected, $actual, $msg);
78 $this->assertEqualResult(
80 $this->remote->call('core.getAPIVersion')
87 $this->assertEqualResult(
[all …]
/dokuwiki/_test/
H A DREADME35 ./vendor/bin/phpunit --verbose --stderr
37 The --stderr flag is needed to avoid a headers already sent error on some systems.
41 ==== PHP CodeSniffer ====
51 To learn more about PHP CodeSniffer visit https://www.dokuwiki.org/devel:phpcodesniffer
59 To learn more about PHP CodeSniffer visit https://www.dokuwiki.org/devel:rector
62 ===== 32-bit =====
64 PHP 9 may drop 32bit support. Security updates for 8.4 end on 2028-12-31. See https://wiki.php.net/…
66-bit containers (''--platform linux/386'') can provide testing for 64bit hosts. NB. The more appro…
70 podman run -v $PWD/..:/dokuwiki \
71 \--platform linux/386 --workdir /dokuwiki/_test \
[all …]
/dokuwiki/vendor/simplepie/simplepie/
H A DREADME.markdown4 SimplePie is a very fast and easy-to-use class, written in PHP, that puts the
13 ------------
14 * PHP 7.2+ (Required since SimplePie 1.8.0)
17 * Optionally, intl extension, [symfony/polyfill-intl-idn](https://github.com/symfony/polyfill-intl-
21 PSR-18: HTTP Client support
22 --------------
24 Since SimplePie 1.9.0 you can use a [PSR-18](https://www.php-fig.org/psr/psr-18/) HTTP client like …
25 or [every other implementation](https://packagist.org/providers/psr/http-client-implementation).
26 Please note that you would also need [PSR-17](https://www.php-fig.org/psr/psr-17/) implementations …
28 ```php
[all …]
H A DCHANGELOG.md12 ## [1.9.0](https://github.com/simplepie/simplepie/compare/1.8.1...1.9.0) - 2025-09-12
16 - New method `SimplePie\SimplePie::set_http_client()` for providing PSR-18 HTTP client and PSR-17 f…
17 - New method `SimplePie\Locator::set_http_client()` for providing PSR-18 HTTP client and PSR-17 fac…
18 - New method `SimplePie\Sanitize::set_http_client()` for providing PSR-18 HTTP client and PSR-17 fa…
22 - Use `idn_to_ascii` function instead of `idna_convert` library (requires `intl` extension or a [po…
23 - Improve precision of type annotations and increased the PHPStan checks to level 8 (by @jtojnar in…
24 - Use native `gzdecode` function instead of internal PHP implementation (by @jtojnar in [#882](http…
25 - `SimplePie\SimplePie::set_curl_options([CURLOPT_HTTPHEADER => …])` will no longer prevent the fol…
29 - Do not crash when `Content-Type` header is missing (by @Art4 in [#774](https://github.com/simplep…
30 - Correct `SimplePie\File::$permanent_url` when multiple redirects are chained (by @jtojnar in [#81…
[all …]
/dokuwiki/vendor/splitbrain/lesserphp/
H A DHISTORY.md9 * 2024-01-27: Refactoring based on 0.6-dev branch and some cherry-picks from other repos
12 * 2021-03-10: adds php8-support and drops php5.x-support, pushing min requirement to php7.2
16 * 2021-03-10: More PHP 7.4 support for 0.5-dev (@phy25 and @ArtemGoutsoul)
19 * 2020-01-19: added 7.4 support to travis and removed antique php versions (@phy25)
20 * 2020-01-19: fixed wrong array access in lib_luma
21 * 2020-01-19: removed HHVM profile from travis. HHVM support is now broken anyway
24 * 2016-09-30: renaming it to lesserphp for easier distinction
25 * 2016-09-30: applying some pull requests of the origin repository
29 * 2016-09-29: applying some pull requests of the origin repository
35 * 2016-09-26: applying some pull requests of the origin repository
[all …]
/dokuwiki/vendor/openpsa/universalfeedcreator/
H A DREADME.md7 HTML, JS, PHP
11 ```php
12 require 'vendor/autoload.php';
15 $rss->useCached(); // use cached version if age < 1 hour
16 $rss->title = "PHP news";
17 $rss->description = "daily news from the PHP scripting world";
20 $rss->descriptionTruncSize = 500;
21 $rss->descriptionHtmlSyndicated = true;
23 $rss->link = "http://www.dailyphp.net/news";
24 $rss->syndicationURL = "http://www.dailyphp.net/" . $_SERVER["SCRIPT_NAME"];
[all …]
/dokuwiki/vendor/geshi/geshi/src/geshi/
H A Dcaddcl.php1 <?php
3 * caddcl.php
4 * ----------
12 * DCL for AutoCAD 12 or later and IntelliCAD all versions.
15 * -------
17 * - Added support for multiple object splitters
19 * - First Release
22 * -------------------------
40 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
64 'is_enabled','is_tab_stop','is-bold','key','label','layout','list',
[all …]
H A Df1.php1 <?php
3 * f1.php
4 * -------
13 * -------
15 * - First Release
18 * -------------------------
19 * - Add more RTL functions with URLs
37 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
55 //Hexadecimal Char Specs (Utf16 codes, Unicode versions only)
56 2 => "#\\\\u[\da-fA-F]{4}#",
[all …]
H A Dteraterm.php1 <?php
3 * teraterm.php
4 * --------
13 * This version of teraterm.php was created for Tera Term 4.62 and LogMeTT 2.9.4.
14 * Newer versions of these application can contain additional Macro commands
15 * and/or keywords that are not listed here. The latest release of teraterm.php
19 * -------
21 * - First Release for Tera Term 4.60 and below.
23 * - First Release for Tera Term 4.62 and below.
25 * - Second Release for Tera Term 4.62 and below.
[all …]
H A Dcadlisp.php1 <?php
3 * cadlisp.php
4 * -----------
12 * For AutoCAD V.12..2005 and IntelliCAD all versions.
15 * -------
17 * - Added support for multiple object splitters
19 * - First Release
22 * -------------------------
40 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
56 'atoms-family','autoarxload','autoload','Boole','boundp','caddr',
[all …]
/dokuwiki/inc/Remote/
H A DJsonRpcServer.php1 <?php
12 /** @var float The XML-RPC Version. 0 is our own simplified variant */
20 $this->remote = new Api();
26 …am string $body Should only be set for testing, otherwise the request body is read from php://input
37 throw new RemoteException("JSON-RPC server not enabled.", -32605);
40 header('Access-Control-Allow-Origin: ' . $conf['remotecors']);
42 if ($INPUT->server->str('REQUEST_METHOD') !== 'POST') {
45 throw new RemoteException("JSON-RPC server only accepts POST requests.", -32606);
47 [$contentType] = explode(';', $INPUT->server->str('CONTENT_TYPE'), 2); // ignore charset
48 $contentType = strtolower($contentType); // mime types are case-insensitive
[all …]
/dokuwiki/inc/lang/ca-valencia/
H A Dlang.php1 <?php
10 $lang['encoding'] = 'utf-8';
27 $lang['btn_revs'] = 'Versions antigues';
47 $lang['btn_register'] = 'Registrar-se';
67 $lang['regbadmail'] = 'La direcció de correu no pareix vàlida - contacte en l\'administr…
68 … = 'Les dos contrasenyes que ha donat no són idèntiques, per favor, torne a intentar-ho.';
70 $lang['reghere'] = '¿Encara no té un conte? Cree-se\'n un';
101 $lang['uploadspam'] = 'L\'enviament ha segut bloquejat per la llista anti-spam.';
105 $lang['deletefail'] = 'No s\'ha pogut borrar "%s" - comprove els permissos.';
106 $lang['mediainuse'] = 'L\'arxiu "%s" no s\'ha borrat - encara s\'està utilisant.';
[all …]
/dokuwiki/vendor/kissifrot/php-ixr/src/Message/
H A DMessage.php1 <?php
29 $this->message =& $message;
35 … // merged from WP #10698 - this method avoids the RAM usage of preg_replace on very large messages
36 $header = preg_replace('/<\?xml.*?\?' . '>/s', '', substr($this->message, 0, 100), 1);
37 $this->message = trim(substr_replace($this->message, $header, 0, 100));
38 if ('' == $this->message) {
43 $header = preg_replace('/^<!DOCTYPE[^>]*+>/i', '', substr($this->message, 0, 200), 1);
44 $this->message = trim(substr_replace($this->message, $header, 0, 200));
45 if ('' == $this->message) {
50 $root_tag = substr($this->message, 0, strcspn(substr($this->message, 0, 20), "> \t\r\n"));
[all …]
/dokuwiki/vendor/geshi/geshi/
H A DCHANGELOG2 CHANGES - Changelog for GeSHi (geshi.php only)
7 changes - thanks to all who suggested these ideas and gave me the code to show me how!
16 - Renamed Nimrod to Nim (mrtuxa)
18 - Added language files
22 - Some minor tweaks for RFC822 email support (BenBE)
23 - Introduce strip_language function (phy25)
24 - Recognize additional file extensions (RealityRipple)
25 - Code style update by avoiding create_function (cweiske)
26 - Backported CLI tool from GeSHi 1.1 branch (cweiske)
27 - Improvements to language files
[all …]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSFTP.php1 <?php
4 * Pure-PHP implementation of SFTP.
6 * PHP version 5
10 …* The API for this library is modeled after the API from PHP's {@link http://php.net/book.ftp FTP …
14 * <?php
15 * include 'vendor/autoload.php';
18 * if (!$sftp->login('username', 'password')) {
22 * echo $sftp->pwd() . "\r\n";
23 * $sftp->put('filename.ext', 'hello, world!');
24 * print_r($sftp->nlist());
[all …]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/
H A DCommon.php1 <?php
6 * PHP version 5
8 * @author Jim Wigginton <terrafrost@php.net>
10 * @license http://www.opensource.org/licenses/mit-license.html MIT License
30 * @author Jim Wigginton <terrafrost@php.net>
66 // brainpool*t* curves are twisted versions of the brainpool*r* curves
76 // https://tools.ietf.org/html/rfc5656#section-10
107 // from http://www.secg.org/SEC2-Ver-1.0.pdf
152 // http://www.ecc-brainpool.org/download/Domain-parameters.pdf
170 'prime-field' => '1.2.840.10045.1.1',
[all …]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DEC.php1 <?php
4 * Pure-PHP implementation of EC.
6 * PHP version 5
10 * <?php
11 * include 'vendor/autoload.php';
14 * $public = $private->getPublicKey();
18 * $signature = $private->sign($plaintext);
20 * echo $public->verify($plaintext, $signature) ? 'verified' : 'unverified';
24 * @author Jim Wigginton <terrafrost@php.net>
26 * @license http://www.opensource.org/licenses/mit-license.html MIT License
[all …]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Common/Functions/
H A DStrings.php1 <?php
6 * PHP version 5
8 * @author Jim Wigginton <terrafrost@php.net>
10 * @license http://www.opensource.org/licenses/mit-license.html MIT License
25 * @author Jim Wigginton <terrafrost@php.net>
56 $substr = substr($string, -$index);
57 $string = substr($string, 0, -$index);
62 * Parse SSH2-style string
74 * L = name-list
123 … // pack() added support for Q in PHP 5.6.3 and PHP 5.6 is phpseclib 3's minimum version
[all …]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/
H A DPuTTY.php1 <?php
6 * See PuTTY's SSHPUBK.C and https://tartarus.org/~simon/putty-snapshots/htmldoc/AppendixC.html
8 * PHP version 5
10 * @author Jim Wigginton <terrafrost@php.net>
12 * @license http://www.opensource.org/licenses/mit-license.html MIT License
27 * @author Jim Wigginton <terrafrost@php.net>
36 private static $comment = 'phpseclib-generated-key';
63 throw new \RuntimeException('Only supported versions are 2 and 3');
118 $hashkey = substr($temp, -32);
133 throw new \UnexpectedValueException('Key should be a string - not a ' . gettype($key));
[all …]

12