Skip to content

Commit 86024a1

Browse files
committed
Version 6.3.1
1 parent d3ab122 commit 86024a1

File tree

3 files changed

+27
-8
lines changed

3 files changed

+27
-8
lines changed

CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
6.3.1 - 2023-10-17
2+
------------------
3+
### Added
4+
* [#5] Add .phpunit.cache into .gitignore
5+
### Fixes
6+
* [#5] Fix syntax
7+
* [#5] Fix unused functions
8+
* [#5] Fix unused variables
9+
* [#5] Comments may not appear after statements
10+
* [#5] Expected 1 space before opening brace; found 0
11+
* [#5] Fix unused variable $data
12+
* [#5] Fix undefined variable $b
13+
* [#5] Fix indent in .md files
14+
* [#5] Use short array syntax
15+
* [#5] Fix indent in .md files
16+
* [#5] Fix CHANGELOG.md
17+
### Removed
18+
* [#5] Remove "bootstrap.php" file
19+
* [#5] Remove require_once from ParserTest.php
20+
* [#5] Remove "print_r" function
21+
22+
123
6.3.0 - 2023-08-11
224
------------------
325
* Update PHPUnit Test and fixtures

README.md

+4-7
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,10 @@ Installation
4040
### Via composer
4141

4242
#### Stable version
43-
44-
`php composer.phar require "kevinoo/phpwhois":"^6.3"`
43+
`composer require "kevinoo/phpwhois":"^6.3"`
4544

4645
#### Latest development version
47-
48-
`php composer.phar require "kevinoo/phpwhois":"dev-master"`
46+
`composer require "kevinoo/phpwhois":"dev-master"`
4947

5048

5149
Example usage
@@ -54,9 +52,7 @@ Example usage
5452
(see `example.php`)
5553
```php
5654
// Load composer framework
57-
if (file_exists(__DIR__ . '/vendor/autoload.php')) {
58-
require_once __DIR__ . '/vendor/autoload.php';
59-
}
55+
require_once __DIR__ . '/vendor/autoload.php';
6056

6157
use phpWhois\Whois;
6258

@@ -81,6 +77,7 @@ You can use phpWhois to query domain names, ip addresses and other information
8177
like AS, i.e, both of the following examples work:
8278
```php
8379
use phpWhois\Whois;
80+
8481
$whois = new Whois();
8582
$result = $whois->lookup('example.com');
8683

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.3.0
1+
6.3.1

0 commit comments

Comments
 (0)