-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathcomposer.json
More file actions
112 lines (112 loc) · 2.88 KB
/
composer.json
File metadata and controls
112 lines (112 loc) · 2.88 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "iprodev/sitemap-generator-pro",
"description": "A professional, production-ready PHP XML sitemap generator with advanced features: concurrency, robots.txt, caching, database storage, change detection, SEO analysis, JavaScript rendering, proxy support, webhooks, and more.",
"type": "library",
"keywords": [
"sitemap",
"xml",
"seo",
"crawler",
"spider",
"web-crawler",
"sitemap-generator",
"robots-txt",
"concurrent",
"cache",
"database",
"change-detection",
"seo-analysis",
"headless-browser",
"javascript-rendering",
"proxy",
"webhooks",
"scheduler"
],
"license": "MIT",
"authors": [
{
"name": "iprodev",
"homepage": "https://github.com/iprodev"
}
],
"homepage": "https://github.com/iprodev/PHP-XML-Sitemap-Generator",
"support": {
"issues": "https://github.com/iprodev/PHP-XML-Sitemap-Generator/issues",
"source": "https://github.com/iprodev/PHP-XML-Sitemap-Generator",
"docs": "https://github.com/iprodev/PHP-XML-Sitemap-Generator/wiki"
},
"autoload": {
"psr-4": {
"IProDev\\Sitemap\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"IProDev\\Sitemap\\Tests\\": "tests/"
}
},
"bin": [
"bin/sitemap",
"bin/scheduler"
],
"require": {
"php": ">=8.0",
"ext-curl": "*",
"ext-xml": "*",
"ext-mbstring": "*",
"ext-zlib": "*",
"ext-pdo": "*",
"guzzlehttp/guzzle": "^7.8",
"psr/log": "^1.1 || ^2.0 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6 || ^10.0",
"squizlabs/php_codesniffer": "^3.9",
"monolog/monolog": "^2.0 || ^3.0",
"phpstan/phpstan": "^1.10"
},
"suggest": {
"ext-redis": "For Redis cache support",
"ext-posix": "For better process management with headless browser",
"monolog/monolog": "For advanced logging capabilities",
"phpstan/phpstan": "For static analysis"
},
"scripts": {
"test": [
"@phpunit"
],
"phpunit": "phpunit --colors=always",
"test-coverage": "phpunit --coverage-html coverage --coverage-text",
"lint": [
"@phpcs"
],
"phpcs": "phpcs --standard=PSR12 src/ tests/",
"phpcbf": "phpcbf --standard=PSR12 src/ tests/",
"check": [
"@lint",
"@test"
],
"analyze": "phpstan analyse src tests --level=5"
},
"scripts-descriptions": {
"test": "Run all PHPUnit tests",
"test-coverage": "Run tests with coverage report",
"lint": "Check code style with PHP_CodeSniffer",
"phpcbf": "Fix code style issues automatically",
"check": "Run both linting and tests",
"analyze": "Run static analysis with PHPStan"
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"preferred-install": "dist",
"platform-check": true
},
"extra": {
"branch-alias": {
"dev-main": "2.0-dev"
}
}
}