-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathcomposer.json
49 lines (49 loc) · 1.59 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"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.",
"homepage": "https://github.com/rvalitov/backlink-checker-php",
"license": "GPL-3.0-or-later",
"scripts": {
"phpcbf": "phpcbf",
"phpcs": "phpcs -s",
"phpcs-fixer": "php-cs-fixer --stop-on-violation --verbose check",
"phpcs-fixer:fix": "php-cs-fixer fix",
"phpmd": "phpmd src/ text phpmd.xml",
"phpstan": "phpstan analyse --level max src tests",
"psalm": "psalm --show-info=true",
"test": "phpunit --coverage-clover ./coverage/clover.xml --coverage-html ./coverage/html --coverage-xml ./coverage/xml --coverage-text"
},
"authors": [
{
"name": "Ramil Valitov",
"email": "[email protected]",
"homepage": "https://github.com/rvalitov"
}
],
"autoload": {
"psr-4": {
"Valitov\\": "src/"
}
},
"require": {
"php": "^8.0.7 || >=8.1",
"guzzlehttp/guzzle": "7.*",
"ext-json": "*",
"zoon/puphpeteer": "^2.2",
"voku/simple_html_dom": "^4.8"
},
"require-dev": {
"ext-xdebug": "^3.1.0",
"phpmd/phpmd": "@stable",
"squizlabs/php_codesniffer": "3.*",
"phpunit/phpunit": "^9",
"phpunit/php-code-coverage": "^9",
"friendsofphp/php-cs-fixer": "^3.65",
"phpstan/phpstan": "^2.1",
"vimeo/psalm": "^5.26.1"
},
"support": {
"issues": "https://github.com/rvalitov/backlink-checker-php/issues",
"source": "https://github.com/rvalitov/backlink-checker-php"
}
}