Skip to content

Commit 8a0df64

Browse files
committed
Fix support for older php versions
1 parent bf255ff commit 8a0df64

File tree

4 files changed

+49
-1487
lines changed

4 files changed

+49
-1487
lines changed

composer.json

Lines changed: 24 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,27 @@
11
{
2-
"name": "tuck/sort",
3-
"description": "Syntactic sugar for PHP's sorting",
4-
"keywords": ["sort", "sorting"],
5-
"license": "MIT",
6-
"authors": [
7-
{
8-
"name": "Ross Tuck",
9-
"email": "[email protected]"
10-
}
11-
],
12-
"require": {
13-
"php": ">=7.0"
14-
},
15-
"require-dev": {
16-
"phpunit/phpunit": "^6.5"
17-
},
18-
"autoload": {
19-
"psr-4": {
20-
"Tuck\\Sort\\": "src/",
21-
"Tuck\\Sort\\Tests\\": "tests/"
22-
}
2+
"name": "tuck/sort",
3+
"description": "Syntactic sugar for PHP's sorting",
4+
"keywords": [
5+
"sort",
6+
"sorting"
7+
],
8+
"license": "MIT",
9+
"platform": {
10+
"php": "5.5"
11+
},
12+
"authors": [
13+
{
14+
"name": "Ross Tuck",
15+
"email": "[email protected]"
2316
}
17+
],
18+
"require": {
19+
"php": ">=5.5"
20+
},
21+
"autoload": {
22+
"psr-4": {
23+
"Tuck\\Sort\\": "src/",
24+
"Tuck\\Sort\\Tests\\": "tests/"
25+
}
26+
}
2427
}

0 commit comments

Comments
 (0)