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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ compliant requests that can be used as well as high level abstractions to ease d
| **`php`** | ~7.0 | Anything lower has reached EOL |
| **`guzzlephp/guzzle`** | ~6.3 | Using `Request` to build PSR-7 `RequestInterface` |
| **`beberlei/assert`** | ~2.7 | The de-facto standard assertions library for PHP |
| **`rg/avro-php`** | ~1.8 | The only Avro PHP implementation I have found so far. |
| **`flix-tech/avro-php`** | ^2.0 | Maintained fork of the only Avro PHP implementation: `rg/avro-php` |

### Optional dependencies

Expand Down
10 changes: 8 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,17 @@
"email": "thomas.ploch@flixbus.com"
}
],
"repositories": [
{
"type": "vcs",
"url": "git@github.com:flix-tech/avro-php.git"
}
],
"require": {
"php": "~7.0",
"guzzlehttp/guzzle": "~6.3",
"beberlei/assert": "~2.7",
"rg/avro-php": "~1.8"
"flix-tech/avro-php": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "~6.2",
Expand All @@ -24,7 +30,7 @@
"doctrine/cache": "~1.3"
},
"suggest": {
"rg/avro-php": "Needed if you want to use the high level registry abstractions",
"flix-tech/avro-php": "Needed for decoding and encoding messages in Apache Avro format",
"raphhh/trex-reflection": "Needed if you want to use the `RequestCallbackValidator`",
"doctrine/cache": "If you want to use the DoctrineCacheAdapter"
},
Expand Down