-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
33 lines (33 loc) · 987 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
30
31
32
33
{
"name": "janreges/siteone-crawler",
"description": "SiteOne Crawler is a free website analyzer and exporter you'll ♥ as a Dev/DevOps, website owner or consultant. Works on all popular platforms - Windows, macOS and Linux (x64 and arm64 too).",
"version": "1.0.8.20240824",
"type": "project",
"require-dev": {
"phpunit/phpunit": "^10.4",
"phpstan/phpstan": "^1.10"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Crawler\\": "src/Crawler/"
}
},
"authors": [
{
"name": "Ján Regeš",
"email": "jan.reges@siteone.cz"
}
],
"require": {
"ext-mbstring": "*",
"ext-dom": "*",
"ext-libxml": "*",
"ext-zlib": "*"
},
"scripts": {
"test": "phpunit --color=always --testdox",
"phpstan": "phpstan analyse",
"changelog": "auto-changelog --commit-limit false --sort-commits date-desc --package --hide-credit"
}
}