The library provides convenient access to the MLS API functionality from applications written in the PHP language.
PHP 7.x.x and later.
The library require the following extensions in order to work properly:
If you use Composer, these dependencies should be handled automatically. If you install manually, you'll want to make sure that these extensions are available.
Get Composer. For example, on macOS:
brew install composerInstall dependencies:
composer installSet environment variables in terminal. For example, on macOS:
export username="your_username"
export password="your_password"
# The login credentials are for the prototype plan. Rate limiting applies.Execute test:
composer update && composer validate
./vendor/bin/phpunit testsYou can install the library via Composer. Run the following command:
composer require mlsapi/mlsapi-php-sdkSimple usage requires you to init and authenticate.
use Mlsapi\Mlsapi\Client;
$sdk = Client::init($config); // guzzle config .
$sdk->authentication($username, $password); // return auth data.Alternatively, you can save the token.
$sdk = Client::initWithToken($token);Then, you can call the MLS API endpoint to retrieve data.
$sdk->teams()->getAll();
$sdk->teams()->getById($id);
// Additional API Endpoints
//
// teams
// players
// hist
// rtd
// assists
// offence
// topscorer
// fixtures
// standings
// newsThe MLS API documentation is available here. If you need further assistance, don't hesitate to contact us.
This project is licensed under the MIT License.
(c) 2020 - 2024 Hori Systems Limited. All Rights Reserved.