Skip to content
This repository was archived by the owner on Jul 1, 2023. It is now read-only.

Commit 35575b4

Browse files
lexidorfacebook-github-bot
authored andcommitted
Require hhvm 4.128 and support autoloading with ext_watchman (#39)
Summary: The hsl is always built-in. ext_watchman and HH\Facts are always available. varray eq vec and darray eq dict is always true. Pull Request resolved: #39 Reviewed By: alexeyt Differential Revision: D35836291 Pulled By: Atry fbshipit-source-id: 52d72bf8ccc61cf87010e0da28fb01c70de31fc3
1 parent 72e2374 commit 35575b4

File tree

5 files changed

+13
-4
lines changed

5 files changed

+13
-4
lines changed

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
tests/ export-ignore
22
.hhconfig export-ignore
3+
.hhvmconfig.hdf export-ignore

.github/workflows/build-and-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
matrix:
1414
os: [ ubuntu ]
1515
hhvm:
16-
- '4.102'
16+
- '4.128'
1717
- latest
1818
- nightly
1919
runs-on: ${{matrix.os}}-latest

.hhvmconfig.hdf

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Autoload {
2+
Query = {"expression": ["allof", ["type", "f"], ["suffix", ["anyof", "hack", "php"]], ["not",["anyof",["dirname",".var"],["dirname",".git"]]]]}
3+
}

composer.json

+6-2
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,17 @@
99
}
1010
},
1111
"require": {
12-
"hhvm": "^4.102",
13-
"hhvm/hsl": "^4.0"
12+
"hhvm": "^4.128"
1413
},
1514
"require-dev": {
1615
"hhvm/hhast": "^4.0",
1716
"hhvm/hacktest": "^2.0",
1817
"facebook/fbexpect": "^2.1.2",
1918
"hhvm/hhvm-autoload": "^2.0|^3.0"
19+
},
20+
"config": {
21+
"allow-plugins": {
22+
"hhvm/hhvm-autoload": true
23+
}
2024
}
2125
}

hh_autoload.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"roots": ["src/"],
33
"devRoots": ["tests/"],
4-
"devFailureHandler": "Facebook\\AutoloadMap\\HHClientFallbackHandler"
4+
"devFailureHandler": "Facebook\\AutoloadMap\\HHClientFallbackHandler",
5+
"useFactsIfAvailable": true
56
}

0 commit comments

Comments
 (0)