Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/amiad/gematria

Simple Gematria library for PHP - convert Hebrew letters to numbers
https://github.com/amiad/gematria

composer gematria hebrew jewish library php

Last synced: 10 days ago
JSON representation

Simple Gematria library for PHP - convert Hebrew letters to numbers

Awesome Lists containing this project

README

        

# gematria
Simple [Gematria](https://en.wikipedia.org/wiki/Gematria) library for PHP - convert Hebrew letters to numbers

# Installation
`$ composer require amiad/gematria`

## Usage
```php
require_once __DIR__.'/vendor/autoload.php';

$text = 'אבג';

$gematria = new \Gematria\Gematria($text);
echo $gematria->get(); // print 6

// more option
echo $gematria;
```

## License
GPL