-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.55 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 1.55 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "qdenka/ultimatelinkchecker",
"description": "A powerful PHP library for checking links against multiple security services",
"type": "library",
"license": "MIT",
"keywords": [
"security",
"url",
"link",
"check",
"safebrowsing",
"virustotal",
"phishing",
"malware"
],
"authors": [
{
"name": "qdenka",
"email": "denis@kaban.dev"
}
],
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.5",
"guzzlehttp/psr7": "^2.4",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/simple-cache": "^3.0",
"psr/log": "^3.0",
"react/promise": "^2.9 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"phpstan/phpstan": "^1.10",
"friendsofphp/php-cs-fixer": "^3.14",
"mockery/mockery": "^1.5",
"symfony/var-dumper": "^6.2"
},
"autoload": {
"psr-4": {
"Qdenka\\UltimateLinkChecker\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Qdenka\\UltimateLinkChecker\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"phpstan": "phpstan analyse",
"cs-fix": "php-cs-fixer fix",
"cs-check": "php-cs-fixer fix --dry-run --diff",
"check": [
"@cs-check",
"@phpstan",
"@test"
]
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable"
}