Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/amiad/gematria
- Owner: amiad
- License: gpl-3.0
- Created: 2022-02-27T09:42:18.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-03-06T22:00:03.000Z (over 2 years ago)
- Last Synced: 2024-10-09T17:41:44.886Z (28 days ago)
- Topics: composer, gematria, hebrew, jewish, library, php
- Language: PHP
- Homepage: https://packagist.org/packages/amiad/gematria
- Size: 25.4 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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