Skip to content

Commit

Permalink
Add bug reproduction code
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardoweiland committed Jun 30, 2020
0 parents commit 84da690
Show file tree
Hide file tree
Showing 7 changed files with 2,318 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
vendor/
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Install composer dependencies

```
composer install
```

And run test with phpunit

```
vendor/bin/phpunit test/SerializerTest.php
```
12 changes: 12 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"require": {
"jms/serializer": "^3.8",
"hashids/hashids": "^4.0",
"phpunit/phpunit": "^9.2"
},
"autoload": {
"psr-4": {
"Test\\": "test/"
}
}
}
Loading

0 comments on commit 84da690

Please sign in to comment.