Skip to content
Closed
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
3 changes: 3 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,6 @@ indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true

[*.php]
indent_size = 4
30 changes: 25 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,38 @@
{
"name": "google/flatbuffers",
"type": "library",
"description": "FlatBuffers for PHP",
"keywords": ["google", "flatbuffers", "serialization"],
"homepage": "https://github.com/google/flatbuffers",
"description": "FlatBuffers for PHP8+",
"keywords": [
"google",
"flatbuffers",
"serialization"
],
"homepage": "https://github.com/tarosky/flatbuffers",
"license": "Apache-2.0",
"require": {
"php": ">=5.4"
"php": ">=8.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "*",
"phpcompatibility/php-compatibility": "*",
"phpstan/phpstan": "^1.11",
"squizlabs/php_codesniffer": "*"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4": {
"Google\\FlatBuffers\\": "php"
}
},
"scripts": {
"lint": [
"phpcs --standard=phpcs.xml",
"phpstan analyse -v"
]
}
}
}
299 changes: 299 additions & 0 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading