Skip to content

Releases: hexydec/tokenise

Tokenise v1.0.2

17 Sep 19:52
Compare
Choose a tag to compare

This is a maintenance release that improves documentation and syntax:

  • Updated support information to PHP 8.1+
  • Improved and optimised syntax
  • Updated readme.md
  • Fixed PHPstan issues
  • Updated dependencies

Tokenise v1.0.1

15 Sep 19:58
Compare
Choose a tag to compare

This is a minor release that fixes a typing issue with the autoloader, and updates dependencies.

Tokenise v1.0.0

04 Mar 23:03
Compare
Choose a tag to compare

This update removed PHP 7.3 support, adds typed properties, and moved to a stable release.

Tokenise v0.4.2

23 Aug 19:18
Compare
Choose a tag to compare

This release makes the code stricter, and slightly faster.

Tokenise v0.4.1

10 Jun 22:22
Compare
Choose a tag to compare

This is a maintenance release that optimises tokenise::__construct() to store the token keys in a 1 based array so it doesn't have to incremented on every tokenise::next()

Tokenise v0.4.0

22 May 16:50
Compare
Choose a tag to compare

This update adds a new method and improves testing:

  • Added tokenise::rewind() to enable you to rewind the pointer and edit the last token
  • Added tests
  • Removed src/autoload.php from code coverage reports

Tokenise v0.3.0

15 May 21:20
Compare
Choose a tag to compare

This project started life as a component of HTMLdoc, but since I started other similar projects, it made sense to make this component its own project.

This first release adds some features, fixes some little issues, and adds a test suite:

  • Fixed issue with next() where it only remember the current token and not the previous token
  • Added PHPUnit as a dependency and added a test suite
  • Added a GitHub workflow to run the test suite and upload the coverage results to codecov.io
  • Updated readme and improved documentation