Download the PHP
package tmilos/lexer without Composer
On this page you can find all versions of the php package
tmilos/lexer. It is possible to download/install
these versions without Composer. Possible dependencies are resolved
automatically.
After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.
Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.
In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories.
In this case some credentials are needed to access such packages.
Please use the auth.json textarea to insert credentials, if a package is coming from a private repository.
You can look here for more information.
Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
To use Composer is sometimes complicated. Especially for beginners.
Composer needs much resources. Sometimes they are not available on a simple webspace.
If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Warning
This is not a GENERATOR like classical lex is. It does not produce any php code. It's a simple plain scanner
of the given input string and tokenizer into given set of tokens by matching regular expressions.
Thus, at runtime you can change the token definition and use one same code for any token set.
Token Definition
Tokens are defined with TokenDefinition class that holds token name and regular expression. Token name can be
empty, and in that case, lexer will ignore/skip such tokens.
Lexer Configuration
The lexer configuration holds a list of all token definitions. With LexerArrayConfig it can be easily created from an array
where keys are regular expressions and values are names of tokens.
Full scan
Lexer's static method scan($config, $input) can be used to scan given input string and return an array of tokens.
Lexer with state
Instance of the Lexer class be used to walk trough scanned tokens with single look-ahead token.
It's similar in API to doctrine/lexer, just tokens are defined and scanned differently, w/out
the need for recognizing the token type/name from the tokenized value - rather the token type/name is given by the same TokenDefn
that gave the regex to recognize the token.
Composer command for our command line client (download client)This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free.Standard composer command
The package tmilos/lexer contains the following files
Loading the files please wait ....
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.