Skip to content

Commit d724204

Browse files
committed
docs(php): add information about supported php versions
1 parent 78799e7 commit d724204

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ Export a simple function `function hello_world(string $name): string` to PHP:
2222
use ext_php_rs::prelude::*;
2323

2424
/// Gives you a nice greeting!
25-
///
25+
///
2626
/// @param string $name Your name.
27-
///
27+
///
2828
/// @return string Nice greeting!
2929
#[php_function]
3030
pub fn hello_world(name: String) -> String {
@@ -116,6 +116,10 @@ best resource at the moment. This can be viewed at [docs.rs].
116116
- Linux, macOS or Windows-based operating system.
117117
- PHP 8.0 or later.
118118
- No support is planned for earlier versions of PHP.
119+
- PHP versions, that no longer receive security updates, will be dropped.
120+
- PHP 8.0 is now **deprecated** and will be dropped in the future.
121+
- See <https://www.php.net/supported-versions.php> for information on PHP
122+
supported versions and their end of life dates.
119123
- Rust.
120124
- Currently, we maintain no guarantee of a MSRV, however lib.rs suggests Rust
121125
1.57 at the time of writing.

0 commit comments

Comments
 (0)