-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.39 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
50
51
52
{
"name": "abenevaut/phpunit-slicer",
"description": "Tool to slice PHPUnit tests files to tests suites.",
"keywords": ["phpunit", "slice", "tests"],
"type": "project",
"license": "MIT",
"homepage": "https://github.com/abenevaut/opensource",
"support": {
"issues": "https://github.com/abenevaut/opensource/issues",
"source": "https://github.com/abenevaut/opensource"
},
"authors": [
{
"name": "Antoine Benevaut",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"abenevaut/laravel-infrastructure": "^0.2.2",
"illuminate/translation": "^10.9",
"illuminate/validation": "^10.9",
"nunomaduro/termwind": "^1.15"
},
"require-dev": {
"laravel-zero/framework": "^10.0",
"mockery/mockery": "^1.5.0",
"pestphp/pest": "^2.6.0",
"pestphp/pest-plugin-faker": "^2.0"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": ["builds/phpunit-slicer"]
}