-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (62 loc) · 1.62 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
{
"name": "andersundsehr/cache-automation",
"description": "Automatically Adds Cache Tags and cache lifetime",
"license": [
"GPL-2.0-or-later"
],
"type": "typo3-cms-extension",
"require": {
"php": "~8.2.0 || ~8.3.0",
"doctrine/dbal": "^2.13",
"phpmyadmin/sql-parser": "^5.9",
"typo3/cms-core": "^11.5",
"typo3/cms-frontend": "^11.5"
},
"require-dev": {
"andersundsehr/resource-watcher": "dev-master",
"infection/infection": "^0.27.11",
"phpunit/phpunit": "^10.5.20",
"pluswerk/grumphp-config": "^6.10.0",
"saschaegerer/phpstan-typo3": "^1.10.0",
"spatie/phpunit-watcher": "^1.23.6",
"ssch/typo3-rector": "^1.8.1",
"symfony/var-dumper": "^6.4.7 || ^7.0.4"
},
"autoload": {
"psr-4": {
"AUS\\CacheAutomation\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"AUS\\CacheAutomation\\Tests\\": "Tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"phpro/grumphp": true,
"phpstan/extension-installer": true,
"pluswerk/grumphp-config": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"extra": {
"typo3/cms": {
"extension-key": "cache_automation"
}
},
"scripts": {
"post-update-cmd": [
"@composer bump -D"
],
"infection": "infection --only-covered",
"test": "@php -d pcov.enabled=1 ./vendor/bin/phpunit",
"test:watch": [
"Composer\\Config::disableProcessTimeout",
"@php -d pcov.enabled=1 ./vendor/bin/phpunit-watcher watch < /dev/tty"
]
}
}