Skip to content

Commit 773b3ee

Browse files
committed
patch for hhvm
1 parent 149a3a6 commit 773b3ee

File tree

4 files changed

+8
-26
lines changed

4 files changed

+8
-26
lines changed

.travis.yml

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,7 @@ services:
44
- docker
55
env:
66
matrix:
7-
- HHVM_VERSION=4.41.0
8-
- HHVM_VERSION=4.42.0
9-
- HHVM_VERSION=4.43.0
10-
- HHVM_VERSION=4.44.0
11-
- HHVM_VERSION=4.45.0
12-
- HHVM_VERSION=4.46.0
13-
- HHVM_VERSION=4.47.0
14-
- HHVM_VERSION=4.48.0
15-
- HHVM_VERSION=4.49.0
16-
- HHVM_VERSION=4.50.0
17-
- HHVM_VERSION=4.51.0
18-
- HHVM_VERSION=4.52.1
7+
- HHVM_VERSION=4.58.1
198
- HHVM_VERSION=latest
209
install:
2110
- docker pull hhvm/hhvm-proxygen:$HHVM_VERSION

Makefile

Lines changed: 0 additions & 7 deletions
This file was deleted.

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,20 @@
1616
}
1717
],
1818
"require": {
19-
"hhvm": "^4.41",
19+
"hhvm": "^4.58",
2020
"hhvm/hsl": "^4.0",
2121
"hhvm/hsl-experimental": "^4.50",
2222
"hhvm/hhvm-autoload": "^3.0",
23-
"ytake/hungrr": "^0.10.0",
23+
"ytake/hungrr": "^0.12",
2424
"ytake/hhypermedia": "^0.5.0",
2525
"nazg/glue": "^1.4",
26-
"nazg/heredity": "^1.10.0",
27-
"nazg/hcache": "^0.5.0",
26+
"nazg/heredity": "^1.11",
27+
"nazg/hcache": "^0.5",
2828
"nazg/http-server-request-handler": "^0.6.0",
29-
"nazg/http-executor": "^0.10.0",
29+
"nazg/http-executor": "^0.11",
3030
"facebook/hack-router": "^0.19.6",
3131
"facebook/hack-http-request-response-interfaces": "^0.3",
32-
"hack-logging/hack-logging": "^0.5.0"
32+
"hack-logging/hack-logging": "^0.6.0"
3333
},
3434
"require-dev": {
3535
"facebook/fbexpect": "^2.6.1",

tests/Logger/LoggerProviderTest.hack

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ final class LoggerProviderTest extends HackTest {
1414
$container->bind(ApplicationConfig::class)
1515
->to(ApplicationConfig::class);
1616
expect(() ==> $logger->get($container))
17-
->toThrow(\HH\Lib\OS\Exception::class);
17+
->toThrow(\HH\Lib\OS\NotFoundException::class);
1818
}
1919

2020
public function testShouldReturnLoggerInstance(): void {

0 commit comments

Comments
 (0)