-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.31 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.31 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
{
"name": "firehed/mocktrine",
"description": "PHPUnit Doctrine mocking tools",
"type": "library",
"require": {
"php": "^8.2",
"doctrine/annotations": "^1.10 || ^2.0",
"doctrine/collections": "^1.6.8 || ^2.0",
"doctrine/orm": "^2.9",
"doctrine/persistence": "^1.3 || ^2.0 || ^3.0"
},
"require-dev": {
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpunit/phpunit": "^10 || ^11",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"Firehed\\Mocktrine\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Firehed\\Mocktrine\\": "tests"
}
},
"license": "MIT",
"authors": [
{
"name": "Eric Stern",
"email": "eric@ericstern.com"
}
],
"config": {
"sort-packages": true
},
"scripts": {
"coverage": "phpunit --coverage-html .generated/codecoverage; open .generated/codecoverage/index.html",
"phpstan": "phpstan analyse --memory-limit=256M",
"phpstan-baseline": "phpstan analyse --memory-limit=256M --generate-baseline",
"lint": "phpcs",
"analyze": ["@phpstan"],
"test": [
"@unit",
"@analyze",
"@lint"
],
"unit": "phpunit"
}
}