Skip to content

Commit fc454de

Browse files
committed
Fix min PHP-version
1 parent 49b3b6f commit fc454de

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/simplesamlphp-install.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ repository](simplesamlphp-install-repo).
1414
## Prerequisites
1515

1616
* A web server capable of executing PHP scripts.
17-
* PHP version >= 7.2.0.
17+
* PHP version >= 8.0.0.
1818
* Support for the following PHP extensions:
1919
* Always required: `date`, `dom`, `fileinfo`, `filter`, `hash`, `intl`, `json`, `libxml`, `mbstring`, `openssl`,
2020
`pcre`, `session`, `simplexml`, `SPL` and `zlib`
@@ -396,9 +396,9 @@ As an example, let's see how you can install SimpleSAMLphp in your home director
396396
just created in your `public_html` directory. For example, if your home directory is reachable in
397397
`https://host.example/~myaccount/`, set the base URL path accordingly:
398398

399-
```bash
400-
'baseurlpath' => 'https://host.example/~myaccount/simplesaml/',
401-
```
399+
```php
400+
'baseurlpath' => 'https://host.example/~myaccount/simplesaml/',
401+
```
402402

403403
Now, you can go to the URL of your installation and check if things work:
404404

0 commit comments

Comments
 (0)