This repository was archived by the owner on Jan 4, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
72 lines (72 loc) · 1.91 KB
/
composer.json
File metadata and controls
72 lines (72 loc) · 1.91 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
65
66
67
68
69
70
71
72
{
"name": "phphd/cache-test-bundle",
"description": "Clearing Symfony cache pools between test runs",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Yevhen Sidelnyk",
"email": "zsidelnik@gmail.com"
}
],
"keywords": [
"phpunit",
"testing"
],
"minimum-stability": "stable",
"require": {
"php": ">=8.0.2",
"phpunit/phpunit": "^9.4",
"symfony/http-kernel": "^6.0",
"symfony/dependency-injection": "^6.0",
"psr/cache": "^2.0|^3.0"
},
"require-dev": {
"symfony/var-dumper": "^6.0",
"phpstan/phpstan": "^1.10",
"vimeo/psalm": "^5.15",
"psalm/plugin-phpunit": "^0.18.4",
"symplify/easy-coding-standard": "^12.0",
"phphd/coding-standard": "0.4.*",
"phpstan/phpstan-phpunit": "^1.3"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/phphd/coding-standard"
}
],
"autoload": {
"psr-4": {
"PhPhD\\CacheTestBundle\\": "",
"PhPhD\\CacheTest\\": "src/"
},
"exclude-from-classmap": [
"/tests/"
]
},
"autoload-dev": {
"psr-4": {
"PhPhD\\CacheTest\\Tests\\": "tests/"
},
"files": [
"tests/aliases.php"
]
},
"scripts": {
"ci:pack": [
"@ci:ecs",
"@ci:rector",
"@ci:phpstan",
"@ci:psalm",
"@ci:test"
],
"ci:ecs": "vendor/bin/ecs check",
"ci:ecs-fix": "vendor/bin/ecs check --fix",
"ci:rector": "vendor/bin/rector process --dry-run",
"ci:rector-fix": "vendor/bin/rector process",
"ci:phpstan": "vendor/bin/phpstan analyze ./",
"ci:psalm": "vendor/bin/psalm",
"ci:test": "vendor/bin/phpunit --testdox --colors=always"
}
}