-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
115 lines (115 loc) · 3.02 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
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
113
114
115
{
"name": "eliashaeussler/cache-warmup",
"description": "Composer package to warm up website caches, based on a given XML sitemap",
"license": "GPL-3.0-or-later",
"type": "library",
"authors": [
{
"name": "Elias Häußler",
"email": "[email protected]",
"homepage": "https://haeussler.dev",
"role": "Maintainer"
}
],
"homepage": "https://cache-warmup.dev/",
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
"ext-filter": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"ext-simplexml": "*",
"ext-zlib": "*",
"cuyz/valinor": "^1.4",
"guzzlehttp/guzzle": "^7.8.2",
"guzzlehttp/promises": "^2.0.3",
"guzzlehttp/psr7": "^2.0",
"psr/event-dispatcher": "^1.0",
"psr/http-message": "^2.0",
"psr/log": "^2.0 || ^3.0",
"symfony/console": "^5.4.35 || ^6.4.3 || ^7.0.3",
"symfony/dependency-injection": "^5.4.35 || ^6.4.3 || ^7.0.3",
"symfony/event-dispatcher": "^5.4.35 || ^6.4.3 || ^7.0.3",
"symfony/filesystem": "^5.4.35 || ^6.4.3 || ^7.0.3",
"symfony/options-resolver": "^5.4.35 || ^6.4.3 || ^7.0.3",
"symfony/yaml": "^5.4.35 || ^6.4.3 || ^7.0.3"
},
"require-dev": {
"armin/editorconfig-cli": "^2.0",
"eliashaeussler/php-cs-fixer-config": "^2.0",
"eliashaeussler/phpstan-config": "^2.0",
"eliashaeussler/rector-config": "^3.0",
"eliashaeussler/transient-logger": "^1.0",
"eliashaeussler/version-bumper": "^1.1",
"ergebnis/composer-normalize": "^2.28",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
"phpunit/phpunit": "^11.5.1",
"symfony/config": "^5.4.35 || ^6.4.3 || ^7.0.3",
"symfony/event-dispatcher-contracts": "^2.5.3 || ^3.4.2",
"symfony/string": "^5.4.35 || ^6.4.3 || ^7.0.3"
},
"conflict": {
"cuyz/valinor": "1.14.0"
},
"autoload": {
"psr-4": {
"EliasHaeussler\\CacheWarmup\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"EliasHaeussler\\CacheWarmup\\Tests\\": "tests/unit"
}
},
"bin": [
"bin/cache-warmup"
],
"config": {
"allow-plugins": {
"eliashaeussler/version-bumper": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"scripts": {
"fix": [
"@fix:composer",
"@fix:editorconfig",
"@fix:php"
],
"fix:composer": "@composer normalize",
"fix:editorconfig": "@lint:editorconfig --fix",
"fix:php": "php-cs-fixer fix",
"lint": [
"@lint:composer",
"@lint:editorconfig",
"@lint:php"
],
"lint:composer": "@fix:composer --dry-run",
"lint:editorconfig": "ec",
"lint:php": "@fix:php --dry-run",
"migration": [
"@migration:rector"
],
"migration:rector": "rector process -c rector.php",
"sca": [
"@sca:php"
],
"sca:php": [
"@php tests/build/service-container.php",
"phpstan analyse -c phpstan.php"
],
"test": [
"@test:e2e",
"@test:unit"
],
"test:e2e": "tests/e2e/run.sh",
"test:e2e:docker": "@test:e2e docker",
"test:e2e:phar": "@test:e2e phar",
"test:unit": "@test:unit:coverage --no-coverage",
"test:unit:coverage": "phpunit -c phpunit.xml"
}
}