From 829b8738123897453f306aa05c61ba0b46375ff5 Mon Sep 17 00:00:00 2001 From: slvlr Date: Fri, 20 Jan 2023 20:30:03 +0300 Subject: [PATCH] composer.json update --- LICENSE | 2 +- README.md | 2 +- composer.json | 12 ++++++------ config/etherscan.php | 1 - src/Resources/Balance.php | 2 +- src/Services/EtherScanService.php | 4 ++-- tests/Feature/EtherScanTest.php | 6 +++--- tests/{ => Unit}/TestCase.php | 4 ++-- 8 files changed, 16 insertions(+), 17 deletions(-) rename tests/{ => Unit}/TestCase.php (81%) diff --git a/LICENSE b/LICENSE index 5684776..145dc1e 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2022 slvler +Copyright (c) 2022 slvler Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 3239e6c..9fc5b3c 100644 --- a/README.md +++ b/README.md @@ -137,4 +137,4 @@ To install this package tou can use composer: ## License -The MIT License (MIT). Please see [License File](https://github.com/hs-qwerty/TMDB/blob/main/LICENSE.md) for more information. +The MIT License (MIT). Please see [License File](https://github.com/slvler/etherscan-service/blob/main/README.md) for more information. diff --git a/composer.json b/composer.json index 836fb99..738ae3e 100644 --- a/composer.json +++ b/composer.json @@ -1,22 +1,22 @@ { "name": "slvler/ether", - "description": "etherscan api", - "type": "package", "license": "MIT", + "description": "An api service for etherscan.io", + "type": "package", "authors": [ { "name": "slvler", - "email": "56368718+hs-qwerty@users.noreply.github.com" + "email": "slvler@proton.me" } ], "autoload": { "psr-4": { - "Slvler\\Ether\\": "src/" + "slvler\\ether\\": "src/" } }, "autoload-dev": { "psr-4": { - "Slvler\\Ether\\Tests\\": "tests/" + "slvler\\ether\\Tests\\": "tests/" } }, "require": {}, @@ -31,7 +31,7 @@ "extra": { "laravel": { "providers": [ - "Slvler\\Ether\\EtherServiceProvider" + "slvler\\ether\\EtherServiceProvider" ] } }, diff --git a/config/etherscan.php b/config/etherscan.php index 0034f79..b098bc7 100644 --- a/config/etherscan.php +++ b/config/etherscan.php @@ -4,7 +4,6 @@ 'ether' => [ 'etherscan_url' => 'https://api.etherscan.io/', - 'etherscan_key' => 'WI48Q1V6RFNY7E1U773E2J5EAB8A1ZG8UM', ], diff --git a/src/Resources/Balance.php b/src/Resources/Balance.php index 10b3983..11df777 100644 --- a/src/Resources/Balance.php +++ b/src/Resources/Balance.php @@ -1,6 +1,6 @@