-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.19 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": "feature-ninja/testing-matrix",
"description": "Easily test multiple scenarios by creating a testing matrix",
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"authors": [
{
"name": "Roj Vroemen",
"email": "roj@feature.ninja"
}
],
"autoload": {
"psr-4": {
"FeatureNinja\\TestingMatrix\\": "src/"
}
},
"require": {
"php": "^8.3"
},
"require-dev": {
"laravel/pint": "^1.10",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^11.3"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"scripts": {
"fix": "@php vendor/bin/pint",
"test": "@php vendor/bin/phpunit",
"analyze": "@php vendor/bin/phpstan",
"complete-check": [
"@test",
"@analyze"
]
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
}
}
}