Skip to content

Commit 1c7aaaf

Browse files
committed
chore: rename package to ux-nl/zip-code-location-lookup
Continued under the ux-nl vendor name. The MIT license and Baspa's copyright notice are retained, with UX Nederland added for the changes made here. The PHP namespace stays Baspa\\ZipCodeLocationLookup so upstream commits remain mergeable and dependents need no code change.
1 parent 2bf3b42 commit 1c7aaaf

3 files changed

Lines changed: 17 additions & 10 deletions

File tree

LICENSE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
The MIT License (MIT)
22

33
Copyright (c) Baspa <hello@baspa.dev>
4+
Copyright (c) Mark van Eijk / UX Nederland
45

56
Permission is hereby granted, free of charge, to any person obtaining a copy
67
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
# Zip Code Location Lookup
22

3-
[![Latest Version on Packagist](https://img.shields.io/packagist/v/baspa/zip-code-location-lookup.svg?style=flat-square)](https://packagist.org/packages/baspa/zip-code-location-lookup)
4-
[![GitHub Tests Action Status](https://img.shields.io/github/actions/workflow/status/baspa/zip-code-location-lookup/run-tests.yml?branch=main&label=tests&style=flat-square)](https://github.com/baspa/zip-code-location-lookup/actions?query=workflow%3Arun-tests+branch%3Amain)
5-
[![GitHub Code Style Action Status](https://img.shields.io/github/actions/workflow/status/baspa/zip-code-location-lookup/fix-php-code-style-issues.yml?branch=main&label=code%20style&style=flat-square)](https://github.com/baspa/zip-code-location-lookup/actions?query=workflow%3A"Fix+PHP+code+style+issues"+branch%3Amain)
6-
[![Total Downloads](https://img.shields.io/packagist/dt/baspa/zip-code-location-lookup.svg?style=flat-square)](https://packagist.org/packages/baspa/zip-code-location-lookup)
3+
[![GitHub Tests Action Status](https://img.shields.io/github/actions/workflow/status/ux-nl/zip-code-location-lookup/run-tests.yml?branch=main&label=tests&style=flat-square)](https://github.com/ux-nl/zip-code-location-lookup/actions?query=workflow%3Arun-tests+branch%3Amain)
4+
[![GitHub Code Style Action Status](https://img.shields.io/github/actions/workflow/status/ux-nl/zip-code-location-lookup/fix-php-code-style-issues.yml?branch=main&label=code%20style&style=flat-square)](https://github.com/ux-nl/zip-code-location-lookup/actions?query=workflow%3A"Fix+PHP+code+style+issues"+branch%3Amain)
75

86
This package allows you to lookup the geographic location of a zip code by combining the [Postcode.tech](https://postcode.tech/) API with the [Google Geocoding API](https://developers.google.com/maps/documentation/geocoding/overview).
97

8+
> Maintained by [UX Nederland](https://ux.nl). Originally written by [Baspa](https://github.com/baspa/zip-code-location-lookup) and continued here under the same MIT license. The PHP namespace is still `Baspa\ZipCodeLocationLookup` so upstream changes stay easy to merge.
9+
1010
## Installation
1111

1212
You can install the package via composer:
1313

1414
```bash
15-
composer require baspa/zip-code-location-lookup
15+
composer require ux-nl/zip-code-location-lookup
1616
```
1717

1818
Then add the Google Maps API and Postcode.tech API keys to your `.env` file:

composer.json

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,24 @@
11
{
2-
"name": "baspa/zip-code-location-lookup",
3-
"description": "y",
2+
"name": "ux-nl/zip-code-location-lookup",
3+
"description": "Look up a Dutch address and its coordinates by postcode and house number",
44
"keywords": [
5-
"Baspa",
5+
"ux-nl",
66
"laravel",
7+
"postcode",
78
"zip-code-location-lookup"
89
],
9-
"homepage": "https://github.com/baspa/zip-code-location-lookup",
10+
"homepage": "https://github.com/ux-nl/zip-code-location-lookup",
1011
"license": "MIT",
1112
"authors": [
1213
{
1314
"name": "Baspa",
1415
"email": "hello@baspa.dev",
15-
"role": "Developer"
16+
"role": "Original author"
17+
},
18+
{
19+
"name": "Mark van Eijk",
20+
"homepage": "https://ux.nl",
21+
"role": "Maintainer"
1622
}
1723
],
1824
"require": {

0 commit comments

Comments
 (0)