forked from grgk/seo-analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
78 lines (78 loc) · 2.23 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
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
{
"name": "addedbytes/seo-analyzer",
"description": "Seo Analyzer",
"license": "MIT",
"type": "library",
"keywords": [
"addedbytes",
"seo-analyzer"
],
"authors": [
{
"name": "grgk",
"email": "gfx@karpiak.pl"
},
{
"name": "dave",
"email": "dave@addedbytes.com"
}
],
"homepage": "https://github.com/AddedBytes/seo-analyzer",
"require": {
"php": ">=8.3",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"guzzlehttp/guzzle": "^7.8.1",
"laminas/laminas-httphandlerrunner": "^2.10",
"psr/simple-cache": "^3.0",
"symfony/cache": "^7.0.6",
"symfony/translation": "^7.0.4",
"symfony/var-dumper": "^7.0.6",
"symfony/yaml": "^7.0.3",
"jaschilz/php-coverage-badger": "^2.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.42.0",
"friendsofphp/php-cs-fixer": "^3.53.0",
"pestphp/pest": "^2.34.7",
"pestphp/pest-plugin-drift": "^2.6",
"pestphp/pest-plugin-type-coverage": "^2.8.1",
"phpstan/phpstan": "^1.10.67",
"phpstan/phpstan-deprecation-rules": "^1.1.4",
"rector/rector": "^1.0.4",
"roave/security-advisories": "dev-latest"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"SeoAnalyzer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"pestphp/pest-plugin": true
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"scripts": {
"analyse": "./vendor/bin/phpstan analyse",
"analyse-baseline": "./vendor/bin/phpstan analyse --generate-baseline --allow-empty-baseline ",
"format-dry-run": "./vendor/bin/php-cs-fixer fix --dry-run --diff",
"format-fix": "./vendor/bin/php-cs-fixer fix",
"rector": "./vendor/bin/rector process --dry-run",
"rector-do": "./vendor/bin/rector process",
"test-coverage": "./vendor/bin/pest --coverage-clover clover.xml && ./vendor/bin/php-coverage-badger clover.xml coverage.svg",
"test": "./vendor/bin/pest",
"test-dirty": "./vendor/bin/pest --dirty"
}
}