Skip to content

Commit 0545574

Browse files
committed
Write project name consistently
1 parent 68f5fb5 commit 0545574

File tree

10 files changed

+16
-16
lines changed

10 files changed

+16
-16
lines changed

CONTRIBUTING.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Contributing
22
============
33

4-
HybridAuth is a community driven project, and it needs your help to keep the project going.
4+
Hybridauth is a community driven project, and it needs your help to keep the project going.
55

66

77
### Report Problems
@@ -30,7 +30,7 @@ Before contributing code, please consider these guide lines:
3030

3131
**Coding Style**
3232

33-
HybridAuth follows [PSR-1](http://www.php-fig.org/psr/psr-1/) and [PSR-2](http://www.php-fig.org/psr/psr-2/).
33+
Hybridauth follows [PSR-1](http://www.php-fig.org/psr/psr-1/) and [PSR-2](http://www.php-fig.org/psr/psr-2/).
3434

3535
Please prevent your IDE for reformatting huge chunks of code/files as it make it nearly impossible to see what changes were
3636
actually made to a file on your Pull Request.
@@ -40,7 +40,7 @@ actually made to a file on your Pull Request.
4040
Additional providers, minor enhancements, bugs and typos fixes are most welcome. Large and "breaking" changes should be
4141
discussed ahead of time. **Please ask first**.
4242

43-
HybridAuth 3 is compatible with **PHP 5.4** and therefore all code supplied must stick to this requirement.
43+
Hybridauth 3 is compatible with **PHP 5.4** and therefore all code supplied must stick to this requirement.
4444

4545
**License**
4646

COPYING.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Except where otherwise noted in the source code (i.e., LightOpenID and OAuth
22
Library, which are covered by similar licences but with different Copyright
33
notices) all the files are:
44

5-
Copyright (C) 2009-2019, HybridAuth authors. All Rights Reserved.
5+
Copyright (C) 2009-2019, Hybridauth authors. All Rights Reserved.
66

77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal
@@ -26,7 +26,7 @@ THE SOFTWARE.
2626
-----------------------
2727

2828

29-
HybridAuth includes a copy of LightOpenID, licensed as follows:
29+
Hybridauth includes a copy of LightOpenID, licensed as follows:
3030

3131
Copyright (c) 2013-2016 Mewp (mewp151 at gmail dot com)
3232

@@ -52,7 +52,7 @@ THE SOFTWARE.
5252
-----------------------
5353

5454

55-
HybridAuth includes a modified copy of OAuth PHP Library, licensed as follows:
55+
Hybridauth includes a modified copy of OAuth PHP Library, licensed as follows:
5656

5757
Copyright (c) 2007-2011 Andy Smith
5858

examples/example_01.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
/**
99
* Step 0: Start PHP session
1010
*
11-
* Normally this step is not required as HybridAuth will attempt to start the session for you, however
11+
* Normally this step is not required as Hybridauth will attempt to start the session for you, however
1212
* in some cases it might be better to call session_start() at top of script to avoid cookie-based sessions
1313
* issues.
1414
*
@@ -108,7 +108,7 @@
108108
*
109109
* Calling getUserProfile returns an instance of class Hybridauth\User\Profile which contain the
110110
* connected user's profile in simple and standardized structure across all the social APIs supported
111-
* by HybridAuth.
111+
* by Hybridauth.
112112
*/
113113

114114
$userProfile = $github->getUserProfile();

examples/example_07/callback.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
// Handle invalid provider errors
4848
//
4949
if ($error) {
50-
error_log('HybridAuth Error: Provider '. json_encode($error) .' not found or not enabled in $config');
50+
error_log('Hybridauth Error: Provider '. json_encode($error) .' not found or not enabled in $config');
5151
// Close the pop-up window
5252
echo "
5353
<script>

src/Exception/Exception.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public function debug($object)
2727
$trace = $this->getTraceAsString();
2828

2929
$html = sprintf('<h1>%s</h1>', $title);
30-
$html .= '<p>HybridAuth has encountered the following error:</p>';
30+
$html .= '<p>Hybridauth has encountered the following error:</p>';
3131
$html .= '<h2>Details</h2>';
3232

3333
$html .= sprintf('<div><strong>Exception:</strong> %s</div>', get_class($this));

src/HttpClient/Curl.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
namespace Hybridauth\HttpClient;
99

1010
/**
11-
* HybridAuth default Http client
11+
* Hybridauth default Http client
1212
*/
1313
class Curl implements HttpClientInterface
1414
{
@@ -32,7 +32,7 @@ class Curl implements HttpClientInterface
3232
CURLINFO_HEADER_OUT => true,
3333
CURLOPT_ENCODING => 'identity',
3434
// phpcs:ignore
35-
CURLOPT_USERAGENT => 'HybridAuth, PHP Social Authentication Library (https://github.com/hybridauth/hybridauth)',
35+
CURLOPT_USERAGENT => 'Hybridauth, PHP Social Authentication Library (https://github.com/hybridauth/hybridauth)',
3636
];
3737

3838
/**

src/HttpClient/Guzzle.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
use GuzzleHttp\Exception\TransferException;
1414

1515
/**
16-
* HybridAuth Guzzle Http client
16+
* Hybridauth Guzzle Http client
1717
*
1818
* Note: This is just a proof of concept. Feel free to improve it.
1919
*

src/HttpClient/HttpClientInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
namespace Hybridauth\HttpClient;
99

1010
/**
11-
* HybridAuth Http clients interface
11+
* Hybridauth Http clients interface
1212
*/
1313
interface HttpClientInterface
1414
{

src/Storage/Session.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
use Hybridauth\Exception\RuntimeException;
1111

1212
/**
13-
* HybridAuth storage manager
13+
* Hybridauth storage manager
1414
*/
1515
class Session implements StorageInterface
1616
{

src/Storage/StorageInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
namespace Hybridauth\Storage;
99

1010
/**
11-
* HybridAuth storage manager interface
11+
* Hybridauth storage manager interface
1212
*/
1313
interface StorageInterface
1414
{

0 commit comments

Comments
 (0)