Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 11 additions & 8 deletions .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,26 +10,29 @@ jobs:
matrix:
include:
- php: "8.0"
os: macos-13
os: macos-latest
- php: "8.0"
mode: high-deps
os: ubuntu-20.04
os: ubuntu-latest
- php: "8.1"
os: ubuntu-20.04
os: ubuntu-latest
- php: "8.1"
mode: low-deps
os: ubuntu-20.04
os: ubuntu-latest
- php: "8.2"
os: ubuntu-20.04
os: ubuntu-latest
- php: "8.2"
os: ubuntu-20.04
os: ubuntu-latest
mode: low-deps
- php: "8.3"
mode: experimental
os: ubuntu-20.04
os: ubuntu-latest
- php: "8.4"
mode: experimental
os: ubuntu-20.04
os: ubuntu-latest
- php: "8.5"
mode: experimental
os: ubuntu-latest
fail-fast: false

runs-on: "${{ matrix.os }}"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Developed by [Florian Eckerstorfer](https://florian.ec) in Vienna, Europe with t
- 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 `ä`).
- No external dependencies.
- PSR-4 compatible.
- Compatible with PHP >= 8.
- Compatible with PHP 8.0 - 8.5.
- 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).

## Installation
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
}
],
"require": {
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
"ext-mbstring": "*"
},
"conflict": {
Expand Down