Skip to content

Commit

Permalink
Merge pull request #7 from marcelooblan2016/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
marcelooblan2016 authored Oct 20, 2022
2 parents a4167ad + 783173f commit 47da413
Show file tree
Hide file tree
Showing 7 changed files with 8,019 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
/vendor
.env
.env.backup
.env.testing
.phpunit.result.cache
Homestead.json
Homestead.yaml
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ VIN_DECODER_VIN_AUDIT_API_KEY="<<API_KEY_HERE>>"
```
## Usage
```bash
\VinDecoder::getMarketValueByVin('WP1AA2A5XHLB04821'); # output: ?array (array or null)
\VinDecoder::getMarketValueByVin('1NXBR32E85Z505904'); # output: ?array (array or null)
\VinDecoder::getVehicleSpecificationByVin('1NXBR32E85Z505904'); # output: ?array (array or null)
```

26 changes: 25 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,29 @@
"name": "Marcelo Oblan",
"email": "marcelo.oblan2016@gmail.com"
}
]
],
"require-dev": {
"phpunit/phpunit": "^9.5",
"orchestra/testbench": "^5.0|^6.0|^7.0"
},
"autoload": {
"psr-4": {
"Marxolity\\VinDecoder\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Marxolity\\VinDecoder\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Marxolity\\VinDecoder\\Providers\\VinDecoderServiceProvider"
]
}
},
"scripts": {
"test": "phpunit"
}
}
Loading

0 comments on commit 47da413

Please sign in to comment.