Skip to content

Commit 9714742

Browse files
authored
Feature/changed dependencies (#37)
* updated * changed supported version
1 parent 6046f7b commit 9714742

File tree

4 files changed

+28
-18
lines changed

4 files changed

+28
-18
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
composer.phar
22
composer.lock
3-
phpunit.xml
43
vendor/
4+
docker/
5+
docker-compose.yml
6+
.vscode
7+
*.hhast.parser-cache

.travis.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,13 @@ services:
44
- docker
55
env:
66
matrix:
7-
- HHVM_VERSION=4.14.1
8-
- HHVM_VERSION=4.15.1
9-
- HHVM_VERSION=4.16.2
10-
- HHVM_VERSION=4.17.1
11-
- HHVM_VERSION=4.18.1
12-
- HHVM_VERSION=4.19.0
13-
- HHVM_VERSION=4.20.1
7+
- HHVM_VERSION=4.20.0
148
- HHVM_VERSION=4.21.0
9+
- HHVM_VERSION=4.22.0
10+
- HHVM_VERSION=4.23.0
11+
- HHVM_VERSION=4.24.0
12+
- HHVM_VERSION=4.25.0
13+
- HHVM_VERSION=4.26.0
1514
- HHVM_VERSION=latest
1615
install:
1716
- docker pull hhvm/hhvm:$HHVM_VERSION

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Http Application / Microframework for HHVM/Hack
1111
[Skeleton](https://github.com/ytake/nazg-skeleton)
1212

1313
```bash
14-
$ hhvm $(which composer) install
14+
$ composer install
1515
```
1616

1717
## License

composer.json

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,25 +16,25 @@
1616
}
1717
],
1818
"require": {
19-
"hhvm": "^4.12",
20-
"hhvm/hsl": "^4.4",
21-
"hhvm/hsl-experimental": "^4.0",
19+
"hhvm": "^4.20",
20+
"hhvm/hsl": "^4.15",
21+
"hhvm/hsl-experimental": "^4.15",
2222
"hhvm/hhvm-autoload": "^2.0.0",
2323
"facebook/hh-clilib": "^2.0.0",
2424
"hack-psr/psr7-http-message-hhi": "^1.0.0",
25-
"ytake/hungrr": "^0.4",
25+
"ytake/hungrr": "^0.5",
2626
"ytake/hhypermedia": "^0.3.2",
2727
"nazg/glue": "^1.2",
28-
"nazg/heredity": "^1.4",
28+
"nazg/heredity": "^1.5",
2929
"nazg/hcache": "^0.3",
3030
"nazg/http-server-request-handler": "^0.3.0",
31-
"nazg/http-executor": "^0.3.0",
32-
"facebook/hack-router": "^0.18.4 | ^0.19",
31+
"nazg/http-executor": "^0.5.0",
32+
"facebook/hack-router": "^0.19",
3333
"facebook/hack-http-request-response-interfaces": "^0.2",
3434
"hack-logging/hack-logging": "^0.1.1"
3535
},
3636
"require-dev": {
37-
"hhvm/hacktest": "^1.5",
37+
"hhvm/hacktest": "^1.6",
3838
"facebook/fbexpect": "^2.5",
3939
"hhvm/hhast": "^4.0.0"
4040
},
@@ -55,5 +55,13 @@
5555
"tests/Struct/Shapes.php"
5656
]
5757
},
58-
"minimum-stability": "stable"
58+
"minimum-stability": "stable",
59+
"scripts": {
60+
"tests": [
61+
"hhvm ./vendor/bin/hacktest.hack tests/"
62+
],
63+
"register": [
64+
"hhvm ./vendor/bin/hh-autoload.hack"
65+
]
66+
}
5967
}

0 commit comments

Comments
 (0)