forked from vanderlee/PHP-stable-sort-functions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
27 lines (26 loc) · 1016 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"name": "vanderlee/php-stable-sort-functions",
"description": "Collection of sort functions using stable sort. Equal values remain in the original order. Only different values are sorted.",
"type": "library",
"keywords": ["sort", "stable", "array", "arsort", "asort", "natcasesort", "natsort", "uasort", "uksort", "usort"],
"homepage": "https://github.com/vanderlee/PHP-stable-sort-functions",
"license": "MIT",
"support": {
"issues": "https://github.com/vanderlee/PHP-stable-sort-functions/issues",
"source": "https://github.com/vanderlee/PHP-stable-sort-functions/"
},
"require": {
"php": ">=5.3.0"
},
"autoload": {
"files": [
"functions/sarsort.php",
"functions/sasort.php",
"functions/snatcasesort.php",
"functions/snatsort.php",
"functions/suasort.php",
"functions/suksort.php",
"functions/susort.php"
]
}
}