gitextract_kuvb7uxu/ ├── .gitattributes ├── .github/ │ └── workflows/ │ ├── coding-standards.yml │ └── tests.yml ├── .gitignore ├── .scrutinizer.yml ├── LICENSE ├── README.md ├── USAGE.md ├── composer.json ├── phpcs.xml.dist ├── phpunit.xml.dist ├── src/ │ ├── BoundingBox.php │ ├── CoordinateReferenceSystem/ │ │ ├── CoordinateReferenceSystem.php │ │ ├── Linked.php │ │ └── Named.php │ ├── Exception/ │ │ ├── Exception.php │ │ ├── InvalidArgumentException.php │ │ └── UnserializationException.php │ ├── Feature/ │ │ ├── Feature.php │ │ └── FeatureCollection.php │ ├── GeoJson.php │ ├── Geometry/ │ │ ├── Geometry.php │ │ ├── GeometryCollection.php │ │ ├── LineString.php │ │ ├── LinearRing.php │ │ ├── MultiLineString.php │ │ ├── MultiPoint.php │ │ ├── MultiPolygon.php │ │ ├── Point.php │ │ └── Polygon.php │ └── JsonUnserializable.php └── tests/ ├── BaseGeoJsonTest.php ├── BoundingBoxTest.php ├── CoordinateReferenceSystem/ │ ├── CoordinateReferenceSystemTest.php │ ├── LinkedTest.php │ └── NamedTest.php ├── Feature/ │ ├── FeatureCollectionTest.php │ └── FeatureTest.php ├── GeoJsonTest.php └── Geometry/ ├── GeometryCollectionTest.php ├── GeometryTest.php ├── LineStringTest.php ├── LinearRingTest.php ├── MultiLineStringTest.php ├── MultiPointTest.php ├── MultiPolygonTest.php ├── PointTest.php └── PolygonTest.php