Skip to content

Commit 45de9d9

Browse files
Updated contact email
1 parent bc97fc8 commit 45de9d9

File tree

146 files changed

+289
-288
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

146 files changed

+289
-288
lines changed

.github/CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ further defined and clarified by project maintainers.
5555
## Enforcement
5656

5757
Instances of abusive, harassing, or otherwise unacceptable behavior may be
58-
reported by contacting the project team at [email protected]. All
58+
reported by contacting the project team at [email protected]. All
5959
complaints will be reviewed and investigated and will result in a response that
6060
is deemed necessary and appropriate to the circumstances. The project team is
6161
obligated to maintain confidentiality with regard to the reporter of an incident.

.github/SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ are multiple supported versions at any given time.
99
## Reporting a Vulnerability
1010

1111
If you discover a security vulnerability within this package, please send an
12-
email to Graham Campbell at [email protected]. All security vulnerabilities
12+
email to Graham Campbell at [email protected]. All security vulnerabilities
1313
will be promptly addressed. Please do not disclose security-related issues
1414
publicly until a fix has been announced.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ $ make test
143143

144144
## Security
145145

146-
If you discover a security vulnerability within this package, please send an email to Graham Campbell at [email protected]. All security vulnerabilities will be promptly addressed. You may view our full security policy [here](https://github.com/BitbucketPHP/Client/security/policy).
146+
If you discover a security vulnerability within this package, please send an email to Graham Campbell at [email protected]. All security vulnerabilities will be promptly addressed. You may view our full security policy [here](https://github.com/BitbucketPHP/Client/security/policy).
147147

148148

149149
## License

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
"authors": [
77
{
88
"name": "Graham Campbell",
9-
"email": "[email protected]"
9+
"email": "[email protected]",
10+
"homepage": "https://github.com/GrahamCampbell"
1011
}
1112
],
1213
"require": {

src/Api/AbstractApi.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/*
66
* This file is part of the Bitbucket API Client.
77
*
8-
* (c) Graham Campbell <[email protected]>
8+
* (c) Graham Campbell <[email protected]>
99
*
1010
* For the full copyright and license information, please view the LICENSE
1111
* file that was distributed with this source code.
@@ -21,7 +21,7 @@
2121

2222
/**
2323
* @author Joseph Bielawski <[email protected]>
24-
* @author Graham Campbell <[email protected]>
24+
* @author Graham Campbell <[email protected]>
2525
*/
2626
abstract class AbstractApi
2727
{

src/Api/Addon.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/*
66
* This file is part of the Bitbucket API Client.
77
*
8-
* (c) Graham Campbell <[email protected]>
8+
* (c) Graham Campbell <[email protected]>
99
*
1010
* For the full copyright and license information, please view the LICENSE
1111
* file that was distributed with this source code.
@@ -20,7 +20,7 @@
2020
/**
2121
* The addon API class.
2222
*
23-
* @author Graham Campbell <[email protected]>
23+
* @author Graham Campbell <[email protected]>
2424
*/
2525
class Addon extends AbstractApi
2626
{

src/Api/Addon/AbstractAddonApi.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/*
66
* This file is part of the Bitbucket API Client.
77
*
8-
* (c) Graham Campbell <[email protected]>
8+
* (c) Graham Campbell <[email protected]>
99
*
1010
* For the full copyright and license information, please view the LICENSE
1111
* file that was distributed with this source code.
@@ -18,7 +18,7 @@
1818
/**
1919
* The abstract addon API class.
2020
*
21-
* @author Graham Campbell <[email protected]>
21+
* @author Graham Campbell <[email protected]>
2222
*/
2323
abstract class AbstractAddonApi extends AbstractApi
2424
{

src/Api/Addon/Linkers.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/*
66
* This file is part of the Bitbucket API Client.
77
*
8-
* (c) Graham Campbell <[email protected]>
8+
* (c) Graham Campbell <[email protected]>
99
*
1010
* For the full copyright and license information, please view the LICENSE
1111
* file that was distributed with this source code.
@@ -19,7 +19,7 @@
1919
/**
2020
* The linkers API class.
2121
*
22-
* @author Graham Campbell <[email protected]>
22+
* @author Graham Campbell <[email protected]>
2323
*/
2424
class Linkers extends AbstractAddonApi
2525
{

src/Api/Addon/Linkers/AbstractLinkersApi.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/*
66
* This file is part of the Bitbucket API Client.
77
*
8-
* (c) Graham Campbell <[email protected]>
8+
* (c) Graham Campbell <[email protected]>
99
*
1010
* For the full copyright and license information, please view the LICENSE
1111
* file that was distributed with this source code.
@@ -19,7 +19,7 @@
1919
/**
2020
* The abstract linkers API class.
2121
*
22-
* @author Graham Campbell <[email protected]>
22+
* @author Graham Campbell <[email protected]>
2323
*/
2424
abstract class AbstractLinkersApi extends AbstractAddonApi
2525
{

src/Api/Addon/Linkers/Values.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/*
66
* This file is part of the Bitbucket API Client.
77
*
8-
* (c) Graham Campbell <[email protected]>
8+
* (c) Graham Campbell <[email protected]>
99
*
1010
* For the full copyright and license information, please view the LICENSE
1111
* file that was distributed with this source code.
@@ -18,7 +18,7 @@
1818
/**
1919
* The values API class.
2020
*
21-
* @author Graham Campbell <[email protected]>
21+
* @author Graham Campbell <[email protected]>
2222
*/
2323
class Values extends AbstractLinkersApi
2424
{

0 commit comments

Comments
 (0)