Skip to content

Commit 4eb0338

Browse files
Merge branch 'main' of github.com:cocur/slugify
2 parents fe402ed + 04035c4 commit 4eb0338

File tree

3 files changed

+13
-10
lines changed

3 files changed

+13
-10
lines changed

.github/workflows/unit.yml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,26 +10,29 @@ jobs:
1010
matrix:
1111
include:
1212
- php: "8.0"
13-
os: macos-13
13+
os: macos-latest
1414
- php: "8.0"
1515
mode: high-deps
16-
os: ubuntu-20.04
16+
os: ubuntu-latest
1717
- php: "8.1"
18-
os: ubuntu-20.04
18+
os: ubuntu-latest
1919
- php: "8.1"
2020
mode: low-deps
21-
os: ubuntu-20.04
21+
os: ubuntu-latest
2222
- php: "8.2"
23-
os: ubuntu-20.04
23+
os: ubuntu-latest
2424
- php: "8.2"
25-
os: ubuntu-20.04
25+
os: ubuntu-latest
2626
mode: low-deps
2727
- php: "8.3"
2828
mode: experimental
29-
os: ubuntu-20.04
29+
os: ubuntu-latest
3030
- php: "8.4"
3131
mode: experimental
32-
os: ubuntu-20.04
32+
os: ubuntu-latest
33+
- php: "8.5"
34+
mode: experimental
35+
os: ubuntu-latest
3336
fail-fast: false
3437

3538
runs-on: "${{ matrix.os }}"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Developed by [Florian Eckerstorfer](https://florian.ec) in Vienna, Europe with t
2020
- Provides custom replacements for Arabic, Austrian, Azerbaijani, Brazilian Portuguese, Bulgarian, Burmese, Chinese, Croatian, Czech, Esperanto, Estonian, Finnish, French, Georgian, German, Greek, Hindi, Hungarian, Italian, Latvian, Lithuanian, Macedonian, Norwegian, Polish, Romanian, Russian, Serbian, Spanish, Swedish, Turkish, Ukrainian, Vietnamese and Yiddish special characters. Instead of removing these characters, Slugify approximates them (e.g., `ae` replaces `ä`).
2121
- No external dependencies.
2222
- PSR-4 compatible.
23-
- Compatible with PHP >= 8.
23+
- Compatible with PHP 8.0 - 8.5.
2424
- Integrations for [Symfony (3, 4 and 5)](http://symfony.com), [Laravel](http://laravel.com), [Twig (2 and 3)](http://twig.sensiolabs.org), [Zend Framework 2](http://framework.zend.com/), [Nette Framework](http://nette.org/), [Latte](http://latte.nette.org/) and [Plum](https://github.com/plumphp/plum).
2525

2626
## Installation

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
}
2020
],
2121
"require": {
22-
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
22+
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
2323
"ext-mbstring": "*"
2424
},
2525
"conflict": {

0 commit comments

Comments
 (0)