Skip to content

Commit 829b873

Browse files
committed
composer.json update
1 parent 26b520b commit 829b873

File tree

8 files changed

+16
-17
lines changed

8 files changed

+16
-17
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) 2022 slvler <slvler@slvler.com>
3+
Copyright (c) 2022 slvler <slvler@proton.me>
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,4 +137,4 @@ To install this package tou can use composer:
137137

138138
## License
139139

140-
The MIT License (MIT). Please see [License File](https://github.com/hs-qwerty/TMDB/blob/main/LICENSE.md) for more information.
140+
The MIT License (MIT). Please see [License File](https://github.com/slvler/etherscan-service/blob/main/README.md) for more information.

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
{
22
"name": "slvler/ether",
3-
"description": "etherscan api",
4-
"type": "package",
53
"license": "MIT",
4+
"description": "An api service for etherscan.io",
5+
"type": "package",
66
"authors": [
77
{
88
"name": "slvler",
9-
"email": "[email protected]"
9+
"email": "[email protected]"
1010
}
1111
],
1212
"autoload": {
1313
"psr-4": {
14-
"Slvler\\Ether\\": "src/"
14+
"slvler\\ether\\": "src/"
1515
}
1616
},
1717
"autoload-dev": {
1818
"psr-4": {
19-
"Slvler\\Ether\\Tests\\": "tests/"
19+
"slvler\\ether\\Tests\\": "tests/"
2020
}
2121
},
2222
"require": {},
@@ -31,7 +31,7 @@
3131
"extra": {
3232
"laravel": {
3333
"providers": [
34-
"Slvler\\Ether\\EtherServiceProvider"
34+
"slvler\\ether\\EtherServiceProvider"
3535
]
3636
}
3737
},

config/etherscan.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
'ether' => [
66
'etherscan_url' => 'https://api.etherscan.io/',
7-
87
'etherscan_key' => 'WI48Q1V6RFNY7E1U773E2J5EAB8A1ZG8UM',
98
],
109

src/Resources/Balance.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Slvler\Ether\Resources;
3+
namespace slvler\ether\Resources;
44

55
use Illuminate\Http\Resources\Json\JsonResource;
66

src/Services/EtherScanService.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

3-
namespace Slvler\Ether\Services;
3+
namespace slvler\ether\Services;
44

5-
use Slvler\Ether\Resources\Balance;
5+
use slvler\ether\Resources\Balance;
66

77
class EtherScanService
88
{

tests/Feature/EtherScanTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

3-
namespace Slvler\Ether\Tests\Feature;
3+
namespace slvler\ether\Tests\Feature;
44

5-
use Slvler\Ether\Services\EtherScanService;
6-
use Slvler\Ether\Tests\TestCase;
5+
use slvler\ether\Services\EtherScanService;
6+
use slvler\ether\Tests\Unit\TestCase;
77

88
class EtherScanTest extends TestCase
99
{

tests/TestCase.php renamed to tests/Unit/TestCase.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

3-
namespace Slvler\Ether\Tests;
3+
namespace slvler\ether\Tests\Unit;
44

5-
use Slvler\Ether\EtherServiceProvider;
5+
use slvler\ether\EtherServiceProvider;
66

77
class TestCase extends \Orchestra\Testbench\TestCase
88
{

0 commit comments

Comments
 (0)