Generator of New Zealand valid data like IP, zip code and city
composer require oni4i/fake-nz-generator
If you need fake, but valid data like IP, ZIP code and City you can use this PHP library.
$cityGenerator = new CityGeneratorService();
//output "Ahaura"
$randCity1 = $cityGenerator->rand();
//output "Athol"
$randCity2 = $cityGenerator->rand();
$ipGenerator = new IPGeneratorService();
//output "14.1.32.0"
$firstIP = $ipGenerator->first();
//output "14.1.32.1"
$nextIP = $ipGenerator->next($firstIP);
//output "14.1.32.0"
$prevIP = $ipGenerator->prev($firstIP);
//output "14.1.95.255"
$randIP = $ipGenerator->rand();
$zipGenerator = new ZipGeneratorService();
//output "7550"
$randZipCode = $zipGenerator->rand();
//output "9749"
$randZipCodeByCity = $zipGenerator->randByCity('Athol');