Skip to content

Commit eb28343

Browse files
author
Thomas Fauré
committed
Changement du nom du package
1 parent 39f3491 commit eb28343

22 files changed

+145
-115
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2014 TTRGroup
3+
Copyright (c) 2022 Whaller
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ PHP API client library for the PipeDrive CRM
55

66
Only some basic functionality required for my current project has been added. However the basic blocks are to make use of the whole API including file uploading.
77

8-
Recommend you install this library through composer. https://packagist.org/packages/benhawker/pipedrive
8+
Recommend you install this library through composer. https://packagist.org/packages/thomasfaure/pipedrive
99

1010
API Docs can be found here: https://developers.pipedrive.com/v1
1111

1212
Example:
1313

1414
```php
15-
use Benhawker\Pipedrive\Pipedrive;
15+
use ThomasFaure\Pipedrive\Pipedrive;
1616

1717
$pipedrive = new Pipedrive('0deceea867202fcf3889cd507ef93a91789f7e3a');
1818

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
},
2626
"autoload": {
2727
"psr-0": {
28-
"Benhawker\\Pipedrive": "src/"
28+
"ThomasFaure\\Pipedrive": "src/"
2929
}
3030
},
3131
"minimum-stability": "dev"

src/Benhawker/Pipedrive/Exceptions/PipedriveApiError.php

Lines changed: 0 additions & 4 deletions
This file was deleted.

src/Benhawker/Pipedrive/Exceptions/PipedriveException.php

Lines changed: 0 additions & 3 deletions
This file was deleted.

src/Benhawker/Pipedrive/Exceptions/PipedriveHttpError.php

Lines changed: 0 additions & 3 deletions
This file was deleted.

src/Benhawker/Pipedrive/Exceptions/PipedriveMissingFieldError.php

Lines changed: 0 additions & 3 deletions
This file was deleted.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?php
2+
3+
namespace ThomasFaure\Pipedrive\Exceptions;
4+
5+
class PipedriveApiError extends PipedriveException
6+
{
7+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?php
2+
3+
namespace ThomasFaure\Pipedrive\Exceptions;
4+
5+
class PipedriveException extends \Exception
6+
{
7+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?php
2+
3+
namespace ThomasFaure\Pipedrive\Exceptions;
4+
5+
class PipedriveHttpError extends PipedriveException
6+
{
7+
}

0 commit comments

Comments
 (0)