marciodojr / german-verbs
v1.2.0
2020-03-29 17:12 UTC
Requires
- guzzlehttp/guzzle: ^6.5
Requires (Dev)
- phpunit/phpunit: ^9.0
This package is auto-updated.
Last update: 2025-02-19 23:51:19 UTC
README
Load German verbs from verbix.com.
How to install
composer require marciodojr/german-verbs
How to use
$client = new Client([ 'base_uri' => 'https://api.verbix.com', 'timeout' => 5.0 ]); $this->verb = new Verb($client); $result = $this->verb->getVerbsStartingWith('a'); // result contains /* array(3) { [0] => array(2) { 'verb' => string(5) "aalen" 'langid' => int(13) } [1] => array(2) { 'verb' => string(5) "aasen" 'langid' => int(13) } [2] => array(2) { 'verb' => string(7) "abaasen" 'langid' => int(13) } } */
How to test
# 1st terminal git clone https://github.com/marciodojr/german-verbs make up # 2nd terminal make php make install vendor/bin/phpunit