You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 4, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,16 @@
2
2
3
3
All notable changes to `laravel-hetzner-dns-api` will be documented in this file.
4
4
5
+
## 1.0.0 - 2023-11-07
6
+
7
+
### Changes
8
+
- renamed `\DutchCodingCompany\HetznerDnsClient\RequestCollections\RecordCollection` to `\DutchCodingCompany\HetznerDnsClient\Resources\RecordResource`
9
+
- renamed `\DutchCodingCompany\HetznerDnsClient\RequestCollections\ZoneCollection` to `\DutchCodingCompany\HetznerDnsClient\Resources\ZoneResource`
10
+
- removed `bensampo/laravel-enum` package, `\DutchCodingCompany\HetznerDnsClient\Enums\RecordType` is now a native enum
Copy file name to clipboardExpand all lines: README.md
+22-21Lines changed: 22 additions & 21 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,8 +2,6 @@
2
2
# An unofficial PHP SDK for the Hetzner DNS API.
3
3
4
4
[](https://packagist.org/packages/dutchcodingcompany/laravel-hetzner-dns-api)
This is the contents of the published config file:
31
-
32
-
```php
33
-
return [
34
-
'api_token' => env('HETZNER_DNS_API_TOKEN')
35
-
];
36
-
```
34
+
This is the contents of the published config file [can be found here](config/hetzner-dns.php).
37
35
38
36
If you would like to store the API Token outside of the config (e.g. encrypted in the database), you can override the resolver in the `boot` method of the `AppServiceProvider`
39
37
```php
38
+
<?php
39
+
40
+
namespace App\Providers;
41
+
42
+
use Illuminate\Support\ServiceProvider;
40
43
use DutchCodingCompany\HetznerDnsClient\HetznerDnsClient;
0 commit comments