PHP reader for green-directory data
Go to file
Maximilian Ruta 01cb7950db cleanup 2019-07-17 20:21:18 +02:00
serializer First commit 2019-06-25 14:38:56 +02:00
src First commit 2019-06-25 14:38:56 +02:00
tests First commit 2019-06-25 14:38:56 +02:00
.gitignore cleanup 2019-07-17 20:21:18 +02:00
.travis.yml fix 2019-06-25 16:01:21 +02:00
LICENSE First commit 2019-06-25 14:38:56 +02:00
README.md add readme 2019-06-25 15:27:51 +02:00
bootstrap.php First commit 2019-06-25 14:38:56 +02:00
composer.json add symfony 2019-06-25 16:18:03 +02:00
phpunit.xml.dist First commit 2019-06-25 14:38:56 +02:00

README.md

Green Directory PHP Build Status

PHP reader for green-directory data.

Example

<?php

use Netzbegruenung\GreenDirectory\Reader;
use Netzbegruenung\GreenDirectory\Repository;

$repository = new Repository(new Reader(__DIR__ . '/green-directory/data'));
$chapter = $repository->findBySherpaId('11002609');

echo $chapter->getCity();