-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (56 loc) · 1.66 KB
/
composer.json
File metadata and controls
56 lines (56 loc) · 1.66 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
{
"name": "michaelpetri/phpunit-consecutive-arguments",
"description": "Replacement for the removed InvocationMocker::withConsecutive method.",
"keywords": ["phpunit", "testing"],
"authors": [
{
"name": "Michael Petri",
"email": "mpetri@lyska.io"
}
],
"license": "MIT",
"require": {
"php": "~8.3.0 || ~8.4.0",
"phpunit/phpunit": "^10.5.45 || ^11.5.7 || ^12.0.2"
},
"require-dev": {
"php-cs-fixer/shim": "^3.68.5",
"roave/security-advisories": "dev-latest",
"rector/rector": "^2.0.9",
"psalm/phar": "^6.5.1"
},
"autoload": {
"psr-4": {
"MichaelPetri\\PhpunitConsecutiveArguments\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\MichaelPetri\\PhpunitConsecutiveArguments\\": "tests/"
}
},
"scripts": {
"lint": [
"@psalm",
"@php-cs-fix",
"@security"
],
"test": [
"@phpunit"
],
"psalm": "vendor/bin/psalm.phar --no-progress",
"psalm-cache-clear": "vendor/bin/psalm.phar --clear-cache",
"psalm-baseline": "vendor/bin/psalm.phar --update-baseline",
"psalm-reset-baseline": "vendor/bin/psalm.phar --set-baseline=psalm-baseline.xml",
"php-cs-fix": "PHP_CS_FIXER_FUTURE_MODE=1 vendor/bin/php-cs-fixer fix --allow-risky=yes",
"security": "composer update --dry-run roave/security-advisories",
"phpunit": "vendor/bin/phpunit --testdox --order-by=random",
"phpunit-coverage-report": "vendor/bin/phpunit --coverage-html=.phpunit-coverage-report",
"rector-test": "vendor/bin/rector --dry-run",
"rector-debug": "vendor/bin/rector --dry-run --xdebug",
"bash": "bash"
},
"conflict": {
"stevebauman/unfinalize": "*"
}
}