-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.85 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 1.85 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
{
"name": "dereuromark/cakephp-cache",
"description": "A CakePHP plugin for view caching with configurable strategies",
"license": "MIT",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"plugin",
"cache",
"caching",
"performance",
"view-cache"
],
"authors": [
{
"name": "Mark Scherer",
"homepage": "https://www.dereuromark.de",
"role": "Maintainer"
}
],
"homepage": "https://github.com/dereuromark/cakephp-cache",
"support": {
"issues": "https://github.com/dereuromark/cakephp-cache/issues",
"source": "https://github.com/dereuromark/cakephp-cache"
},
"require": {
"php": ">=8.2",
"cakephp/cakephp": "^5.1.1"
},
"require-dev": {
"dereuromark/cakephp-shim": "^3.0.0",
"fig-r/psr2r-sniffer": "dev-master",
"phpunit/phpunit": "^11.5 || ^12.1 || ^13.0"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Cache\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cache\\Test\\": "tests/",
"TestApp\\": "tests/test_app/src/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"cs-check": "phpcs --colors --parallel=16",
"cs-fix": "phpcbf --colors --parallel=16",
"stan": "phpstan analyze",
"stan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan:^2.0.0 && mv composer.backup composer.json",
"stan-tests": "phpstan analyze -c tests/phpstan.neon",
"lowest": "validate-prefer-lowest",
"lowest-setup": "composer update --prefer-lowest --prefer-stable --prefer-dist --no-interaction && cp composer.json composer.backup && composer require --dev dereuromark/composer-prefer-lowest && mv composer.backup composer.json",
"test": "phpunit",
"test-coverage": "phpunit --log-junit tmp/coverage/unitreport.xml --coverage-html tmp/coverage --coverage-clover tmp/coverage/coverage.xml"
}
}