Skip to content

Commit 90982ee

Browse files
authored
Merge pull request #30 from ElForastero/feature/support-for-laravel-11
Add support for Laravel 11
2 parents ef4f2d4 + e07b646 commit 90982ee

3 files changed

Lines changed: 1877 additions & 964 deletions

File tree

.github/workflows/php.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
matrix:
1010
operating-system: [ubuntu-latest, macOS-latest]
11-
php-versions: ["8.1", "8.2"]
11+
php-versions: ["8.2", "8.3"]
1212
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
1313

1414
steps:

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "elforastero/transliterate",
33
"description": "Transliteration package for laravel",
4-
"version": "7.0.0",
4+
"version": "8.0.0",
55
"type": "library",
66
"license": "MIT",
77
"authors": [
@@ -23,13 +23,13 @@
2323
}
2424
},
2525
"require": {
26-
"php": ">=8.1",
26+
"php": "^8.2",
2727
"ext-intl": "*",
28-
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0"
28+
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0"
2929
},
3030
"require-dev": {
31-
"phpunit/phpunit": ">=9.0",
32-
"orchestra/testbench": ">=6.0",
31+
"phpunit/phpunit": "^9.0",
32+
"orchestra/testbench": "^6.0",
3333
"friendsofphp/php-cs-fixer": "^3.9",
3434
"brainmaestro/composer-git-hooks": "^2.8"
3535
},

0 commit comments

Comments
 (0)