Download the PHP package fr-esco/php-dice without Composer

On this page you can find all versions of the php package fr-esco/php-dice. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

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.
Please rate this library. Is it a good library?

Informations about the package php-dice

php-dice Packagist Version Total Downloads

A generic RPG dice roller syntax and library.

Getting started

php-dice is designed to work out of the box. It means that installation requires minimal steps.

Download

php-dice can be installed using composer. Run following command to download and install php-dice:

Usage

As shown in index.php, once required the library, you can instantiate the parser:

Then, you can parse your expression:

Later in your code, you can evaluate the parsed result, where the returned object can be inspected for debugging purposes:

Finally, you can print out either a raw string representation of the parsed expression or its beautified version by running respectively:

The final result is stored in its value property.

Exception Handling

You should always wrap the parsing phase in a try / catch block:

Customization

You can also optionally provide a custom scope with additional functions or variables that should be evaluated:

You can provide an associative array using as key any at least 2 characters long string that could appear in your expression, and as value any number or function to execute (see DefaultScope implementation for examples).

You can also specify your Scope Class, that has to extend dice\Scope.

Example

Development

Technology Stack

The grammar is built with PEG.js. Its PHP version is generated by php-pegjs.

Customization

If you need to customize the grammar/dice.pegphp, you can regenerate src/Parser via Javascript:

Visual Test

Serve index.php with your favourite webserver and browse to http://localhost/php-dice/index.php.

You can enter the expression to parse in the textbox and submit the form by clicking on the "Roll" button.

Details and results will be shown below.

License

php-dice is released under the MIT License. See the bundled LICENSE.md for details.


All versions of php-dice with dependencies

PHP Build Version
Package Version
Requires php Version >=5.4
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 fr-esco/php-dice contains the following files

Loading the files please wait ....