Skip to content

Commit a223df4

Browse files
committed
Merge branch 'master' of github.com:rosstuck/sort
2 parents 678b4c0 + b40209e commit a223df4

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Basic sorting functions
1616
```
1717
use Tuck\Sort\Sort;
1818
19-
Sort::values(['foo', 'bar', 'baz']); // returns ['foo', 'bar', 'baz']
19+
Sort::values(['foo', 'bar', 'baz']); // returns ['bar', 'baz', 'foo']
2020
Sort::keys(['x' => 'foo', 'm' => 'bar']); // returns ['m' => 'bar', 'x' => 'foo']
2121
Sort::natural(['img12.jpg', 'img2.jpg', 'img1.jpg']); // returns ['img1.jpg', 'img2.jpg', 'img12.jpg']
2222
Sort::user(

composer.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66
"email": "[email protected]"
77
}
88
],
9-
"require": {},
9+
"require": {
10+
"php": ">=5.6"
11+
},
1012
"autoload": {
1113
"psr-4": {
1214
"Tuck\\Sort\\": "src/",

0 commit comments

Comments
 (0)