Skip to content

Commit d937ca2

Browse files
committed
chore: Update git-auto-commit-action to v7 in workflows and enhance composer.json keywords for better localization support
1 parent 1c027b2 commit d937ca2

File tree

3 files changed

+26
-9
lines changed

3 files changed

+26
-9
lines changed

.github/workflows/fix-php-code-style-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ jobs:
2323
uses: aglipanci/laravel-pint-action@2.6
2424

2525
- name: Commit changes
26-
uses: stefanzweifel/git-auto-commit-action@v6
26+
uses: stefanzweifel/git-auto-commit-action@v7
2727
with:
2828
commit_message: Fix styling

.github/workflows/update-changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
release-notes: ${{ github.event.release.body }}
2626

2727
- name: Commit updated CHANGELOG
28-
uses: stefanzweifel/git-auto-commit-action@v6
28+
uses: stefanzweifel/git-auto-commit-action@v7
2929
with:
3030
branch: main
3131
commit_message: Update CHANGELOG

composer.json

Lines changed: 24 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,25 @@
22
"name": "devwizardhq/laravel-localizer",
33
"description": "Laravel Localizer bridges Laravel translations to your SPA frontend (React/Vue/Inertia) and provides generated language assets, type-safe usage, and global translation helpers.",
44
"keywords": [
5-
"DevWizard",
65
"laravel",
7-
"laravel-localizer"
6+
"laravel-localizer",
7+
"localization",
8+
"internationalization",
9+
"i18n",
10+
"l10n",
11+
"translations",
12+
"language",
13+
"multilingual",
14+
"spa",
15+
"frontend",
16+
"typescript",
17+
"react",
18+
"vue",
19+
"inertia",
20+
"inertiajs",
21+
"php",
22+
"laravel-package",
23+
"devwizard"
824
],
925
"homepage": "https://github.com/devwizardhq/laravel-localizer",
1026
"license": "MIT",
@@ -16,15 +32,16 @@
1632
}
1733
],
1834
"require": {
19-
"php": "^8.4",
20-
"spatie/laravel-package-tools": "^1.16",
21-
"illuminate/contracts": "^11.0||^12.0"
35+
"php": "^8.3",
36+
"illuminate/contracts": "^11.0||^12.0",
37+
"laravel/framework": "11.*",
38+
"orchestra/testbench": "9.*",
39+
"spatie/laravel-package-tools": "^1.16"
2240
},
2341
"require-dev": {
2442
"laravel/pint": "^1.14",
2543
"nunomaduro/collision": "^8.8",
2644
"larastan/larastan": "^3.0",
27-
"orchestra/testbench": "^10.0.0||^9.0.0",
2845
"pestphp/pest": "^4.0",
2946
"pestphp/pest-plugin-arch": "^4.0",
3047
"pestphp/pest-plugin-laravel": "^4.0",
@@ -71,4 +88,4 @@
7188
},
7289
"minimum-stability": "dev",
7390
"prefer-stable": true
74-
}
91+
}

0 commit comments

Comments
 (0)