Releases: xivapi/xivapi-php
Releases · xivapi/xivapi-php
Change some search methods
This changes the following search methods:
columntofindColumnalgorithmtofindAlgorithm
This is because of 2 reasons:
columnwas very close to another methodcolumns, yet these are completely unrelated.- both
findColumnandfindAlgorithmaffect thefind(x)method.
Generalize query params
This change generalizes the query params so that they can be more dynamic and new ones can be used without code changes.
Eg:
$api->snakeCase()->limit(250)->content->Item()->list();Is now:
$queries = [
'snake_case' => true,
'limit' => 250,
];
$api->queries($queries)->content->Item()->list();Initial Release
Everything working, woo!