Skip to content

Commit

Permalink
[FT] New Avro implementations for SR and Schema (#25)
Browse files Browse the repository at this point in the history
* [FT] New Avro implementations for SR and Schema

* [FX] Fix ordered imports
  • Loading branch information
tPl0ch authored Feb 4, 2019
1 parent db93dba commit 40e05df
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
5 changes: 4 additions & 1 deletion .php_cs.dist
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ $finder = PhpCsFixer\Finder::create()
return PhpCsFixer\Config::create()
->setRules([
'@Symfony' => true,
'ordered_imports' => true,
'ordered_imports' => [
'sort_algorithm' => 'alpha',
'imports_order' => ['class', 'const', 'function'],
],
'phpdoc_summary' => false,
'phpdoc_to_comment' => false,
'yoda_style' => true,
Expand Down
9 changes: 3 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@
"require": {
"php": "^7.1",
"beberlei/assert": "~2.7",
"wikimedia/avro": "dev-master@dev",
"flix-tech/confluent-schema-registry-api": "^5.0.3",
"flix-tech/confluent-schema-registry-api": "^6.0.0",
"flix-tech/avro-php": "^3.0.0",
"widmogrod/php-functional": "^4.2|^5.0"
},
"require-dev": {
"phpunit/phpunit": "~7.0",
"phpstan/phpstan-shim": "~0.8",
"phpstan/phpstan-shim": "^0.10",
"phpbench/phpbench": "~0.9",
"vlucas/phpdotenv": "~2.4",
"symfony/serializer": "^2.8|^3.1|^4.0"
Expand All @@ -50,9 +50,6 @@
"suggest": {
"symfony/serializer": "To integrate avro-serde-php into symfony ecosystem"
},
"replace": {
"flix-tech/avro-php": "*"
},
"autoload-dev": {
"psr-4": {
"FlixTech\\AvroSerializer\\Test\\": "test/",
Expand Down

0 comments on commit 40e05df

Please sign in to comment.