Skip to content

Commit db1e299

Browse files
committed
Package rebase
1 parent 44a6eb0 commit db1e299

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ $ sudo mv composer.phar /usr/local/bin/composer
1717
Add the following to your require block in composer.json config. Note: be careful when using the `dev-master` tag as this may have unexpected results depending on your version of Gitlab. See the Versioning section below for more information.
1818

1919
```
20-
"m4tthumphrey/php-gitlab-api": "dev-master"
20+
"fsicurezza/php-gitlab-api": "dev-master"
2121
```
2222

2323
Include Composer's autoloader:

composer.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"name": "m4tthumphrey/php-gitlab-api",
2+
"name": "fsicurezza/php-gitlab-api",
33
"type": "library",
44
"description": "GitLab API client",
5-
"homepage": "https://github.com/m4tthumphrey/php-gitlab-api",
5+
"homepage": "https://github.com/fsicurezza/php-gitlab-api",
66
"keywords": ["gitlab", "api"],
77
"license": "MIT",
88
"authors": [
@@ -18,6 +18,11 @@
1818
"name": "Thibault Duplessis",
1919
"email": "[email protected]",
2020
"homepage": "http://ornicar.github.com"
21+
},
22+
{
23+
"name": "Fulvio Sicurezza",
24+
"email": "[email protected]",
25+
"homepage": "http://www.generalservice.na.it"
2126
}
2227
],
2328
"require": {

lib/Gitlab/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class Client
5454
* @var array
5555
*/
5656
private $options = array(
57-
'user_agent' => 'php-gitlab-api (http://github.com/m4tthumphrey/php-gitlab-api)',
57+
'user_agent' => 'php-gitlab-api (http://github.com/fsicurezza/php-gitlab-api)',
5858
'timeout' => 60
5959
);
6060

lib/Gitlab/HttpClient/HttpClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class HttpClient implements HttpClientInterface
2121
* @var array
2222
*/
2323
protected $options = array(
24-
'user_agent' => 'php-gitlab-api (http://github.com/m4tthumphrey/php-gitlab-api)',
24+
'user_agent' => 'php-gitlab-api (http://github.com/fsicurezza/php-gitlab-api)',
2525
'timeout' => 10,
2626
);
2727

0 commit comments

Comments
 (0)