-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathcomposer.json
More file actions
66 lines (66 loc) · 1.74 KB
/
composer.json
File metadata and controls
66 lines (66 loc) · 1.74 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
65
66
{
"name": "spatie/mixed-content-scanner-cli",
"description": "A tool to scan sites for mixed content",
"keywords": [
"spatie",
"mixed-content-scanner-cli",
"mixed-content",
"https",
"cli",
"tool"
],
"homepage": "https://github.com/spatie/mixed-content-scanner-cli",
"license": "MIT",
"authors": [
{
"name": "Freek Van der Herten",
"email": "freek@spatie.be",
"homepage": "https://spatie.be",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"nunomaduro/larastan": "^2.2",
"orchestra/testbench": "^7.7",
"pestphp/pest": "^1.22",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.1",
"spatie/crawler": "^7.0",
"spatie/mixed-content-scanner": "^4.0",
"symfony/console": "^6.0|^7.0|^8.0",
"symfony/var-dumper": "^6.0|^7.0|^8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"spatie/phpunit-snapshot-assertions": "^4.0"
},
"autoload": {
"psr-4": {
"Spatie\\MixedContentScannerCli\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spatie\\MixedContentScannerCli\\Test\\": "tests"
},
"files": [
"tests/helpers.php"
]
},
"scripts": {
"test": "vendor/bin/phpunit",
"analyse": "vendor/bin/phpstan analyse"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"bin": [
"mixed-content-scanner"
]
}