Skip to content

Commit

Permalink
[add] new dependencies, PHP 8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
rvalitov committed Mar 30, 2023
1 parent 7401f29 commit 5d89cb4
Show file tree
Hide file tree
Showing 5 changed files with 107 additions and 178 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ vendor/
#node.js
node_modules/

*.phar
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
![PHP version icon](https://img.shields.io/static/v1?label=PHP&message=7.3%20-%208.0&color=blue)
![License icon](https://img.shields.io/badge/License-GPL--3-green)
![Platfrom icon](https://img.shields.io/badge/Platform-Window%2C%20Linux-green)

# The Idea of Backlink Checker
It's a casual task to work with backlinks in SEO. There are several tools to check or search for backlinks. Unlike other tools, we do not scan all possible websites in Internet and does not analyze Google Search results in order to find backlinks to your website. We only validate a list of backlinks that you already know. You receive a list of backlinks using one of the following ways:

Expand Down Expand Up @@ -134,7 +138,8 @@ $base64_image = "data:image/jpeg;base64," . base64_encode($response->getScreensh
Examples are available in a dedicated project on [GitHub](https://github.com/rvalitov/backlink-checker-php-demo).

# System Requirements
We use dependencies, therefore we need PHP 7.2 and later.
We use dependencies, therefore we need PHP 7.3 and later.
PHP 8.0 supported. PHP 8.1 not supported.

# Feedback
Your feedback is very appreciated. If you want to see new features in this project, please, post your ideas and feature requests in the [issue tracker](https://github.com/rvalitov/backlink-checker-php/issues).
Expand Down
17 changes: 14 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"name": "rvalitov/backlink-checker-php",
"description": "Validates a predefined list of backlinks on remote websites that they exist and are correct (for SEO). Simple and Javascript-enabled web engines are used for scraping.",
"minimum-stability": "stable",
"minimum-stability": "dev",
"prefer-stable": true,
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/rvalitov/backlink-checker-php",
"authors": [
Expand All @@ -16,12 +17,22 @@
"source": "https://github.com/rvalitov/backlink-checker-php"
},
"require": {
"php": ">=7.4.0",
"php": "^7.3 || ^8.0",
"kub-at/php-simple-html-dom-parser": "^1.9.1",
"guzzlehttp/guzzle": "7.*",
"nesk/puphpeteer": "2.*",
"nesk/puphpeteer": "dev-zoon",
"ext-json": "*"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/zoonru/puphpeteer.git"
},
{
"type": "git",
"url": "https://github.com/zoonru/rialto.git"
}
],
"autoload": {
"psr-4": {
"Valitov\\": "src/"
Expand Down
Loading

0 comments on commit 5d89cb4

Please sign in to comment.