forked from rvalitov/backlink-checker-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
29 lines (29 loc) · 904 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"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",
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/rvalitov/backlink-checker-php",
"authors": [
{
"name": "Ramil Valitov",
"email": "[email protected]",
"homepage": "https://github.com/rvalitov"
}
],
"support": {
"issues": "https://github.com/rvalitov/backlink-checker-php/issues",
"source": "https://github.com/rvalitov/backlink-checker-php"
},
"require": {
"php": ">=5.4.0",
"sunra/php-simple-html-dom-parser": "~v1.5.2",
"guzzlehttp/guzzle": "~6.3.3",
"nesk/puphpeteer": "~1.6.0"
},
"autoload": {
"psr-4": {
"Valitov\\": "src/"
}
}
}