Skip to content

Commit 985cba1

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents ead7d91 + b220d25 commit 985cba1

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

composer.json

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
{
22
"name": "astrotomic/laravel-translatable",
33
"description": "A Laravel package for multilingual models",
4+
"license": "MIT",
45
"keywords": [
56
"laravel",
67
"translation",
78
"language",
89
"database"
910
],
10-
"homepage": "https://astrotomic.info",
11-
"license": "MIT",
1211
"authors": [
1312
{
1413
"name": "Tom Witkowski",
@@ -23,6 +22,13 @@
2322
"role": "Developer"
2423
}
2524
],
25+
"homepage": "https://astrotomic.info",
26+
"support": {
27+
"email": "[email protected]",
28+
"issues": "https://github.com/Astrotomic/laravel-translatable/issues",
29+
"source": "https://github.com/Astrotomic/laravel-translatable",
30+
"docs": "https://docs.astrotomic.info/laravel-translatable"
31+
},
2632
"require": {
2733
"php": "^8.0",
2834
"illuminate/contracts": "^8.0 || ^9.0",
@@ -35,16 +41,8 @@
3541
"orchestra/testbench": "^6.0 || ^7.0",
3642
"phpunit/phpunit": "^9.0"
3743
},
38-
"config": {
39-
"sort-packages": true
40-
},
41-
"extra": {
42-
"laravel": {
43-
"providers": [
44-
"Astrotomic\\Translatable\\TranslatableServiceProvider"
45-
]
46-
}
47-
},
44+
"minimum-stability": "dev",
45+
"prefer-stable": true,
4846
"autoload": {
4947
"psr-4": {
5048
"Astrotomic\\Translatable\\": "src/Translatable/"
@@ -55,17 +53,19 @@
5553
"Astrotomic\\Translatable\\Tests\\": "tests/"
5654
}
5755
},
58-
"minimum-stability": "dev",
59-
"prefer-stable": true,
56+
"config": {
57+
"sort-packages": true
58+
},
59+
"extra": {
60+
"laravel": {
61+
"providers": [
62+
"Astrotomic\\Translatable\\TranslatableServiceProvider"
63+
]
64+
}
65+
},
6066
"scripts": {
6167
"csfix": "php-cs-fixer fix --using-cache=no",
6268
"test": "vendor/bin/phpunit",
6369
"test-coverage": "vendor/bin/phpunit --coverage-html=build"
64-
},
65-
"support": {
66-
"email": "[email protected]",
67-
"issues": "https://github.com/Astrotomic/laravel-translatable/issues",
68-
"source": "https://github.com/Astrotomic/laravel-translatable",
69-
"docs": "https://docs.astrotomic.info/laravel-translatable"
7070
}
7171
}

0 commit comments

Comments
 (0)