Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
.github export-ignore
.gitattributes export-ignore
.gitignore export-ignore
CONDUCT.md export-ignore
CONTRIBUTING.md export-ignore
ISSUE_TEMPLATE.md export-ignore
LICENSE.md export-ignore
PULL_REQUEST_TEMPLATE.md export-ignore
README.md export-ignore
tests export-ignore
benchmarks export-ignore
phpunit.xml export-ignore
phpbench.json export-ignore
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.phpunit.result.cache
composer.lock
/.vscode
/.idea
/vendor
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
}
],
"require": {
"php": "^7.1"
"php": "^7.1 || ^8.0"
},
"require-dev": {
"phpbench/phpbench": "^0.16",
"phpunit/phpunit": "^8.0"
"phpbench/phpbench": "^0.17",
"phpunit/phpunit": "^9.0"
},
"suggest": {
"ext-buffer": "C extension to speed up pack/unpack binary data"
Expand Down
Loading