generated from spiral-packages/package-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
93 lines (93 loc) · 2.42 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "spiral/testing",
"description": "Spiral Framework testing SDK",
"keywords": ["spiral-packages", "spiral", "testing"],
"license": "MIT",
"authors": [
{
"name": "Anton Titov (wolfy-j)",
"email": "[email protected]"
},
{
"name": "Pavel Buchnev (butschster)",
"email": "[email protected]"
},
{
"name": "Aleksei Gagarin (roxblnfk)",
"email": "[email protected]"
},
{
"name": "Maksim Smakouz (msmakouz)",
"email": "[email protected]"
},
{
"name": "RoadRunner Community",
"homepage": "https://github.com/spiral/roadrunner/graphs/contributors"
}
],
"homepage": "https://spiral.dev/",
"support": {
"docs": "https://spiral.dev/docs/testing-start",
"issues": "https://github.com/spiral/testing/issues",
"forum": "https://forum.roadrunner.dev/",
"chat": "https://discord.gg/TFeEmCs"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/roadrunner-server"
}
],
"require": {
"ext-json": "*",
"php": ">=8.1",
"nyholm/psr7": "^1.5",
"mockery/mockery": "^1.5",
"phpunit/phpunit": "^9.6 || ^10.0",
"spiral/auth": "^3.8.4",
"spiral/auth-http": "^3.8.4",
"spiral/boot": "^3.8.4",
"spiral/events": "^3.8.4",
"spiral/console": "^3.8.4",
"spiral/http": "^3.8.4",
"spiral/mailer": "^3.8.4",
"spiral/queue": "^3.8.4",
"spiral/session": "^3.8.4",
"spiral/security": "^3.8.4",
"spiral/tokenizer": "^3.8.4",
"spiral/storage": "^3.8.4",
"spiral/views": "^3.8.4",
"spiral/translator": "^3.8.4",
"spiral/scaffolder": "^3.8.4",
"symfony/mime": "^6.0 || ^7.0"
},
"suggest": {
"brianium/paratest": "Required to run tests in parallel (^6.0).",
"ext-gd": "Required to use generate fake image files"
},
"require-dev": {
"spiral/framework": "^3.11",
"spiral/roadrunner-bridge": "^2.2 || ^3.0",
"spiral-packages/league-event": "^1.0.1",
"spiral/nyholm-bridge": "^1.2",
"vimeo/psalm": "^5.9"
},
"autoload": {
"psr-4": {
"Spiral\\Testing\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spiral\\Testing\\Tests\\App\\": "tests/app",
"Spiral\\Testing\\Tests\\": "tests/src"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"spiral/composer-publish-plugin": false
}
}
}