Skip to content

Releases: xivapi/xivapi-php

Fixes 1.6.1

25 Mar 21:57

Choose a tag to compare

1.6.2

Fixes

Update api key param

19 Mar 22:52

Choose a tag to compare

This change is intended for staging, the update will roll out to production soon.

New release for the new XIVAPI

04 Mar 20:32
bf9652c

Choose a tag to compare

Merge pull request #4 from xivapi/mogboard

Mogboard

BC

04 Mar 20:27

Choose a tag to compare

BC

This is intended for the new market info. Do not use it if you are relying on this API on the current XIVAPI production. Instead use 1.2.X

Env set, Placeholder market method

27 Jan 16:33

Choose a tag to compare

1.2.2

Merge remote-tracking branch 'origin/master'

Fix character search

02 Jan 17:02
836b872

Choose a tag to compare

Fix for the character search endpoint

Add async logic

02 Dec 16:25

Choose a tag to compare

This release allows you to do async concurrent requests. You will need an API key to do these and not be rate limited

$api = new \XIVAPI\XIVAPI();
$api->environment->key('');

// using concurrent
use GuzzleHttp\Promise;

$promises = [
    'item1' => $api->async()->content->Item()->one(1675),
    'item2' => $api->async()->content->Item()->one(5),
    'item3' => $api->async()->content->Item()->one(2546),
];

$results = Promise\settle($promises)->wait();
$items = $api->unwrap($results);

print_r( $items->item1->Name . PHP_EOL);
print_r( $items->item2->Name . PHP_EOL);
print_r( $items->item3->Name . PHP_EOL);

Fix endpoint for obtaining companion tokens

30 Nov 17:35

Choose a tag to compare

1.1.5

Fix endpoint for companion tokens

Fix issue with handling arrays in search

30 Nov 13:15

Choose a tag to compare

1.1.4

Fix array handling in search

Fix bug with search filters

30 Nov 12:55

Choose a tag to compare

Minor bug fix with search filters