Skip to content

Commit fa4b526

Browse files
committed
Fix composer.json
1 parent 725b186 commit fa4b526

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

composer.json

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
{
22
"name": "illuminated/helper-functions",
33
"description": "Laravel-specific and pure PHP helper functions.",
4-
"keywords": ["laravel", "helpers", "functions", "collection"],
4+
"keywords": ["laravel", "helpers", "functions", "multiarray", "backtrace", "xml"],
55
"license": "MIT",
6+
"support": {
7+
"issues": "https://github.com/dmitry-ivanov/laravel-helper-functions/issues",
8+
"source": "https://github.com/dmitry-ivanov/laravel-helper-functions"
9+
},
610
"authors": [{
711
"name": "Dmitry Ivanov",
812
"email": "dmitry.g.ivanov@gmail.com"
@@ -26,7 +30,9 @@
2630
"illuminated/testing-tools": "5.8.*"
2731
},
2832
"autoload": {
29-
"files": ["src/autoload.php"],
33+
"files": [
34+
"src/autoload.php"
35+
],
3036
"psr-4": {
3137
"Illuminated\\Helpers\\": "src/Helpers/"
3238
}
@@ -35,5 +41,10 @@
3541
"psr-4": {
3642
"Illuminated\\Helpers\\Tests\\": "tests/"
3743
}
38-
}
44+
},
45+
"config": {
46+
"sort-packages": true
47+
},
48+
"minimum-stability": "dev",
49+
"prefer-stable": true
3950
}

0 commit comments

Comments
 (0)