-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
49 lines (49 loc) · 1.18 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
{
"name": "firehed/mocktrine",
"description": "PHPUnit Doctrine mocking tools",
"type": "library",
"require": {
"php": "^8.1",
"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": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"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",
"analyze": "phpstan analyse",
"lint": "phpcs",
"test": [
"@unit",
"@analyze",
"@lint"
],
"unit": "phpunit"
}
}