Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,11 @@ Currently, supported APIs:

```php
use Scopus\ScopusApi;
use Scopus\ScopusApiFactory;

// replace with your API key
$apiKey = "114ff0c3b57a0ec62e15efdedefd2e6f";
$api = new ScopusApi($apiKey);
$api = (new ScopusApiFactory($apiKey))->createApiClient();

// Scopus Search API
$results = $api
Expand Down Expand Up @@ -59,10 +60,13 @@ foreach ($results->getEntries() as $entry) {
https://kasparsj.github.io/scopus-api-php/

## Changelog
- 14/06/2023 - v1.4
* Added institution token support
* Updated GuzzleHttp to the latest version (7.6)
- 01/05/2022 - v1.3
* Added Abstract Citations Count API
- 14/11/2021 - v1.2
* Bug fix
* Bug fix
- 19/05/2020 - v1.1
* Added Search Author API
* Added Citation Overview API
Expand Down
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
}
],
"require": {
"guzzlehttp/guzzle": ">=6.3.0"
"php": ">=7.2",
"guzzlehttp/guzzle": "^7.6"
},
"autoload": {
"psr-0": {
Expand Down
138 changes: 0 additions & 138 deletions docs/404.html

This file was deleted.

Loading