Skip to content

Releases: gpslab/base64uid

Release 1.2.0

14 Jan 15:15
c818a06
Compare
Choose a tag to compare

Changelog (since 1.1.1...1.2.0)

Release 1.1.1

14 Jan 14:41
4e0b701
Compare
Choose a tag to compare

Changelog (since 1.1.0...1.1.1)

Release 1.1.0

22 Feb 08:57
Compare
Choose a tag to compare

Changelog (since 1.0.0...1.1.0)

  • Allow customize charset

    Before:

    $uid = Base64UID::generate(11);
    $uid = str_replace(['-', '_'], ['+', '/'], $uid);

    After:

    $charset = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ/+';
    $uid = Base64UID::generate(11, $charset);

Release 1.0.0

20 Jun 15:15
Compare
Choose a tag to compare
v1.0.0

require PHP >=5.3