Download the PHP package sethsharp/odds-api without Composer
On this page you can find all versions of the php package sethsharp/odds-api. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download sethsharp/odds-api
More information about sethsharp/odds-api
Files in sethsharp/odds-api
Package odds-api
Short Description This is a convenient composer wrapper for the odds-api.
License MIT
Homepage https://github.com/SethSharp/odds-api
Informations about the package odds-api
Odds API Wrapper
A convenient API wrapper for the Odds API, designed for Composer environments such as Laravel.
About "The Odds API"
The Odds API is a simple and very well-documented API, allowing for fast, low-cost integration. It covers over 70 sports and over 40 bookmakers - with a continuing expanding offering. The Odds API is an Australian company based in Melbourne since 2017.
Why a Wrapper?
A wrapper simplifies the usage and implementation of powerful APIs like "The Odds API". It abstracts the complexities of direct API interactions, providing a more user-friendly interface for us developers.
Contribution Guide
This is an open-source project, so contributions are welcome! Whether you want to add new features, fix bugs, or improve documentation, your help is appreciated. Submit your PR for review and I will review them as soon as possible.
Steps for Installation
Composer
Publish Config file
This file contains some essential information the Client requires to make successful requests
Example Usages
You can simply create a new Client, passing in your api key and that's it!
This package is set up in a way that all the params you need can be built using chainable function helpers, as they all return $this
.
Once you call one of the API endpoints which return a response, you can no longer call these function helpers.
Another way to define your Client Class
You can bind your Client class at runtime in the AppServiceProvider. Allowing you to simply define the Client in the constructor of your class, without having to constantly pass the api credentials.
then your class may look like
Additional: When constructing the Client, it will have some default parameters
This avoids having to define these on each request, but they can be overwritten with their corresponding class functions ie;
setRegions('au')
To help manage your quota, there are helpers that you can call to return the number of requests used and remaining. Checkout the UseHandleHeaders
trait, which
can be called on any OddsClient
instant.
Also, if this API ever becomes outdated for a small period of time and you need to add new parameters, you can utilise
the addParams()
function, which accepts an array.
Credits
All versions of odds-api with dependencies
guzzlehttp/guzzle Version ^7.8
nesbot/carbon Version ^3.7
illuminate/support Version ^11.26