This repository has been archived by the owner on Apr 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
67 lines (67 loc) · 1.52 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "phpunitgen/console",
"description": "The PhpUnitGen command line features for tests generation.",
"license": "MIT",
"type": "library",
"keywords": [
"test",
"generation",
"generator"
],
"support": {
"issues": "https://github.com/paul-thebaud/phpunitgen-core/issues",
"source": "https://github.com/paul-thebaud/phpunitgen-console"
},
"authors": [
{
"name": "Paul Thébaud",
"email": "[email protected]"
},
{
"name": "Killian Hascoët",
"email": "[email protected]"
}
],
"bin": [
"bin/phpunitgen"
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"ext-json": "*",
"league/container": "^3.3",
"league/flysystem": "^3.0",
"phpunitgen/core": "^4.0",
"symfony/console": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/stopwatch": "^4.3 || ^5.0 || ^6.0 || ^7.0",
"symfony/yaml": "^4.3 || ^5.0 || ^6.0 || ^7.0",
"tightenco/collect": "^8.0 || ^9.0"
},
"require-dev": {
"laravel/framework": "^9.0",
"mockery/mockery": "^1.3",
"orchestra/testbench": "^7.0",
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
"PhpUnitGen\\Console\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\PhpUnitGen\\Console\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"PhpUnitGen\\Console\\Adapters\\Laravel\\PhpUnitGenServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}