]>
Commit | Line | Data |
---|---|---|
1 | #Server requirements | |
2 | ## PHP | |
3 | ### Release information | |
4 | - [PHP: Supported versions](http://php.net/supported-versions.php)[](.html) | |
5 | - [PHP: Unsupported versions](http://php.net/eol.php) _(EOL - End Of Life)_[](.html) | |
6 | - [PHP 7 Changelog](http://php.net/ChangeLog-7.php)[](.html) | |
7 | - [PHP 5 Changelog](http://php.net/ChangeLog-5.php)[](.html) | |
8 | - [PHP: Bugs](https://bugs.php.net/)[](.html) | |
9 | ||
10 | ### Supported versions | |
11 | Version | Status | Shaarli compatibility | |
12 | :---:|:---:|:---: | |
13 | 7.0 | Supported | :white_check_mark: | |
14 | 5.6 | Supported | :white_check_mark: | |
15 | 5.5 | EOL: 2016-07-10 | :white_check_mark: | |
16 | 5.4 | EOL: 2015-09-14 | :white_check_mark: (up to Shaarli 0.8.x) | |
17 | 5.3 | EOL: 2014-08-14 | :white_check_mark: (up to Shaarli 0.8.x) | |
18 | ||
19 | See also: | |
20 | - [Travis configuration](https://github.com/shaarli/Shaarli/blob/master/.travis.yml)[](.html) | |
21 | ||
22 | ### Dependency management | |
23 | Starting with Shaarli `v0.8.x`, [Composer](https://getcomposer.org/) is used to resolve,[](.html) | |
24 | download and install third-party PHP dependencies. | |
25 | ||
26 | Library | Required? | Usage | |
27 | ---|:---:|--- | |
28 | [`shaarli/netscape-bookmark-parser`](https://packagist.org/packages/shaarli/netscape-bookmark-parser) | All | Import bookmarks from Netscape files[](.html) | |
29 | ||
30 | ### Extensions | |
31 | Extension | Required? | Usage | |
32 | ---|:---:|--- | |
33 | [`openssl`](http://php.net/manual/en/book.openssl.php) | All | OpenSSL, HTTPS[](.html) | |
34 | [`php-mbstring`](http://php.net/manual/en/book.mbstring.php) | CentOS, Fedora, RHEL, Windows | multibyte (Unicode) string support[](.html) | |
35 | [`php-gd`](http://php.net/manual/en/book.image.php) | optional | thumbnail resizing[](.html) | |
36 | [`php-intl`](http://php.net/manual/en/book.intl.php) | optional | localized text sorting (e.g. `e->รจ->f`)[](.html) | |
37 | [`php-curl`](http://php.net/manual/en/book.curl.php) | optional | using cURL for fetching webpages and thumbnails in a more robust way[](.html) |