Skip to content

Commit d3abaaa

Browse files
committed
cleaning
1 parent 7a07d6a commit d3abaaa

File tree

10 files changed

+12
-74
lines changed

10 files changed

+12
-74
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ composer require elegantly/laravel-yousign
1818
You can publish the config file with:
1919

2020
```bash
21-
php artisan vendor:publish --tag="laravel-yousign-config"
21+
php artisan vendor:publish --tag="yousign-config"
2222
```
2323

2424
This is the contents of the published config file:
@@ -43,18 +43,18 @@ return [
4343
'signing_secret' => env('YOUSIGN_WEBHOOK_SECRET'),
4444

4545
/*
46-
* You can define a default job that should be run for all other Stripe event type
46+
* You can define a default job that should be run for all other Yousign event type
4747
* without a job defined in next configuration.
4848
* You may leave it empty to store the job in database but without processing it.
4949
*/
5050
'default_job' => '',
5151

5252
/*
5353
* You can define the job that should be run when a certain webhook hits your application
54-
* here. The key is the name of the Stripe event type with the `.` replaced by a `_`.
54+
* here. The key is the name of the Yousign event type with the `.` replaced by a `_`.
5555
*
56-
* You can find a list of Stripe webhook types here:
57-
* https://stripe.com/docs/api#event_types.
56+
* You can find a list of Yousign webhook types here:
57+
* https://developers.yousign.com/docs/webhooks
5858
*/
5959
'jobs' => [
6060
// 'signature_request_done' => \App\Jobs\YousignWebhooks\HandleSignatureRequestDone::class,

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@
2727
"nunomaduro/collision": "^8.1.1||^7.10.0",
2828
"larastan/larastan": "^2.9||^3.0",
2929
"orchestra/testbench": "^10.0.0||^9.0.0||^8.22.0",
30-
"pestphp/pest": "^3.0",
31-
"pestphp/pest-plugin-arch": "^3.0",
32-
"pestphp/pest-plugin-laravel": "^3.0",
30+
"pestphp/pest": "^3.0||^4.0",
31+
"pestphp/pest-plugin-arch": "^3.0||^4.0",
32+
"pestphp/pest-plugin-laravel": "^3.0||^4.0",
3333
"phpstan/extension-installer": "^1.3||^2.0",
3434
"phpstan/phpstan-deprecation-rules": "^1.1||^2.0",
3535
"phpstan/phpstan-phpunit": "^1.3||^2.0"

config/yousign.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,18 @@
2121
'signing_secret' => env('YOUSIGN_WEBHOOK_SECRET'),
2222

2323
/*
24-
* You can define a default job that should be run for all other Stripe event type
24+
* You can define a default job that should be run for all other Yousign event type
2525
* without a job defined in next configuration.
2626
* You may leave it empty to store the job in database but without processing it.
2727
*/
2828
'default_job' => '',
2929

3030
/*
3131
* You can define the job that should be run when a certain webhook hits your application
32-
* here. The key is the name of the Stripe event type with the `.` replaced by a `_`.
32+
* here. The key is the name of the Yousign event type with the `.` replaced by a `_`.
3333
*
34-
* You can find a list of Stripe webhook types here:
35-
* https://stripe.com/docs/api#event_types.
34+
* You can find a list of Yousign webhook types here:
35+
* https://developers.yousign.com/docs/webhooks
3636
*/
3737
'jobs' => [
3838
// 'signature_request_done' => \App\Jobs\YousignWebhooks\HandleSignatureRequestDone::class,

database/factories/.gitkeep

Whitespace-only changes.

database/factories/ModelFactory.php

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

database/migrations/.gitkeep

Whitespace-only changes.

database/migrations/create_yousign_table.php.stub

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

src/Commands/.gitkeep

Whitespace-only changes.

src/Commands/YousignCommand.php

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

src/Integration/Resource/SignatureRequest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ public function create(
7474
*/
7575
public function find(
7676
string $signatureRequestId,
77-
7877
): Response {
7978
return $this->connector->send(new GetSignatureRequest($signatureRequestId));
8079
}

0 commit comments

Comments
 (0)