Skip to content

Commit 9432e7a

Browse files
committed
update dependencies
1 parent c428720 commit 9432e7a

File tree

7 files changed

+494
-19
lines changed

7 files changed

+494
-19
lines changed

.gitattributes

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
*.hack linguist-language=Hack
22

33
/tests export-ignore
4-
.travis.sh export-ignore
5-
.travis.yml export-ignore
4+
/.github export-ignore
5+
composer.lock export-ignore

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
/vendor/
2-
composer.lock
32
*.hhast.parser-cache

.hhconfig

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1+
assume_php=false
12
safe_array = true
23
safe_vector_array = true
34
unsafe_rx = false
45
const_default_func_args = true
56
disallow_array_literal = true
67
disable_lval_as_an_expression = true
78
ignored_paths = [ "vendor/.+/tests/.+", "vendor/.+/bin/.+" ]
8-
disallow_silence = true
9+
allowed_decl_fixme_codes=2053,4045,4047
10+
allowed_fixme_codes_strict=2011,2049,2050,2053,2083,3084,4027,4045,4047,4104,4106,4107,4108,4110,4128,4135,4188,4200,4223,4248,4240,4323

composer.json

+12-8
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,20 @@
1414
}
1515
],
1616
"require": {
17-
"hhvm": "^4.56",
18-
"hhvm/hsl": "^4.40",
19-
"hhvm/hsl-experimental": "^4.52.1",
20-
"hhvm/hsl-io": "0.1"
17+
"hhvm": "~4.83.1 || ~4.84.0",
18+
"hhvm/hsl": "^4.41",
19+
"hhvm/hsl-experimental": "^4.66.0",
20+
"hhvm/hsl-io": "~0.2.1"
2121
},
2222
"require-dev": {
23-
"facebook/fbexpect": "^2.7",
23+
"facebook/difflib": "^1.1.1",
24+
"facebook/fbexpect": "^2.7.7",
25+
"facebook/hh-clilib": "^2.5.2",
2426
"hhvm/hacktest": "^2.0",
25-
"hhvm/hhast": "^4.25",
26-
"nuxed/crypto": "^1.0"
27+
"hhvm/hhast": "^4.82.2",
28+
"hhvm/hhvm-autoload": "^3.1.6",
29+
"hhvm/type-assert": "^4.1.2",
30+
"nuxed/crypto": "^2.0"
2731
},
2832
"scripts": {
2933
"check": [
@@ -35,4 +39,4 @@
3539
"test": "hacktest tests/",
3640
"type-check": "hh_client src/"
3741
}
38-
}
42+
}

0 commit comments

Comments
 (0)