Skip to content

Commit

Permalink
Merge branch 'main' of github.com:spatie/laravel-rdap
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze committed Jun 1, 2022
2 parents b263b93 + 4314017 commit 60a640e
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

All notable changes to `laravel-rdap` will be documented in this file.

## 0.0.2 - 2022-05-27

## What's Changed

- Small typo by @tplaner in https://github.com/spatie/laravel-rdap/pull/1

## New Contributors

- @tplaner made their first contribution in https://github.com/spatie/laravel-rdap/pull/1

**Full Changelog**: https://github.com/spatie/laravel-rdap/compare/0.0.1...0.0.2

## 0.0.1 - 2022-05-25

**Full Changelog**: https://github.com/spatie/laravel-rdap/commits/0.0.1
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ composer require spatie/laravel-rdap
You can publish the config file with:

```bash
php artisan vendor:publish --tag="laravel-rdap-config"
php artisan vendor:publish --tag="rdap-config"
```

This is the contents of the published config file:
Expand Down
2 changes: 1 addition & 1 deletion tests/RdapTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
expect($response)->toBeNull();
});

it('will throw an exception for a non-supported domain', function() {
it('will throw an exception for a non-supported domain', function () {
$this->rdap->domain('flareapp.io');
})->throws(CouldNotFindRdapServer::class);

Expand Down

0 comments on commit 60a640e

Please sign in to comment.