Skip to content

Commit 45a9f4d

Browse files
author
Sam Harrison
committed
chore: update license references
1 parent 23ca132 commit 45a9f4d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![Email Notifications Badge](https://dx.sendgrid.com/badge/php)](https://dx.sendgrid.com/newsletter/php)
66
[![Twitter Follow](https://img.shields.io/twitter/follow/sendgrid.svg?style=social&label=Follow)](https://twitter.com/sendgrid)
77
[![GitHub contributors](https://img.shields.io/github/contributors/sendgrid/php-http-client.svg)](https://github.com/sendgrid/php-http-client/graphs/contributors)
8-
[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE.md)
8+
[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
99

1010
**Quickly and easily access any RESTful or RESTful-like API.**
1111

@@ -191,4 +191,4 @@ If you've instead found a bug in the library or would like new features added, g
191191

192192
<a name="license"></a>
193193
# License
194-
[The MIT License (MIT)](LICENSE.md)
194+
[The MIT License (MIT)](LICENSE)

test/unit/FilesExistTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public function testFileArePresentInRepo()
1919
$this->assertFileExists("$rootDir/CONTRIBUTING.md");
2020
$this->assertFileExists("$rootDir/Dockerfile");
2121
$this->assertFileExists("$rootDir/ISSUE_TEMPLATE.md");
22-
$this->assertFileExists("$rootDir/LICENSE.md");
22+
$this->assertFileExists("$rootDir/LICENSE");
2323
$this->assertFileExists("$rootDir/PULL_REQUEST_TEMPLATE.md");
2424
$this->assertFileExists("$rootDir/README.md");
2525
$this->assertFileExists("$rootDir/TROUBLESHOOTING.md");

test/unit/LicenceYearTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66

77
class LicenceYearTest extends TestCase
88
{
9-
public function testConstructor()
9+
public function testLicenseYear()
1010
{
1111
$rootDir = __DIR__ . '/../..';
1212

13-
$license = explode("\n", file_get_contents("$rootDir/LICENSE.md"));
13+
$license = explode("\n", file_get_contents("$rootDir/LICENSE"));
1414
$copyright = trim($license[2]);
1515

1616
$year = date('Y');

0 commit comments

Comments
 (0)