-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.29 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.29 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
{
"name": "chesio/bc-cache",
"type": "wordpress-plugin",
"license": "Unlicense",
"description": "Simple disk cache plugin inspired by Cachify.",
"homepage": "https://github.com/chesio/bc-cache",
"authors": [
{
"name": "Česlav Przywara",
"homepage": "https://www.chesio.com"
}
],
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/installers": true
}
},
"keywords": [
"wordpress", "wordpress-plugin"
],
"support": {
"issues": "https://github.com/chesio/bc-cache/issues"
},
"require": {
"php": "^8.2",
"composer/installers": "^1.0 || ^2.0"
},
"require-dev": {
"brain/monkey": "^2.6",
"mockery/mockery": "^1.6",
"php-parallel-lint/php-parallel-lint": "^1.3",
"php-stubs/wp-cli-stubs": "^2.8",
"phpunit/phpunit": "^11.5",
"squizlabs/php_codesniffer": "^4.0",
"szepeviktor/phpstan-wordpress": "^2.0"
},
"autoload-dev": {
"psr-4": {
"BlueChip\\Cache\\Tests\\Unit\\": "tests/unit/src/",
"BlueChip\\Cache\\": "classes/BlueChip/Cache/"
}
},
"scripts": {
"phpcs": "phpcs",
"phpstan": "phpstan analyse --memory-limit 768M",
"unit-tests": "phpunit --configuration tests/unit/phpunit.xml",
"ci": [
"@phpcs",
"@phpstan",
"@unit-tests"
]
}
}