forked from paul-thebaud/phpunitgen-console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
77 lines (77 loc) · 1.69 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
68
69
70
71
72
73
74
75
76
77
{
"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.3.0",
"ext-json": "*",
"league/container": "^3.3",
"league/flysystem": "^3.0",
"phpunitgen/core": "dev-main",
"symfony/console": "^7.0",
"symfony/stopwatch": "^7.0",
"symfony/yaml": "^7.0",
"tightenco/collect": "dev-laravel-9-ongoing"
},
"require-dev": {
"laravel/framework": "^9.0",
"mockery/mockery": "^1.3",
"orchestra/testbench": "^7.0",
"phpunit/phpunit": "^9.0"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/relaypilot/collect"
},
{
"type": "vcs",
"url": "https://github.com/relaypilot/phpunitgen-core"
}
],
"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
}