generated from spiral-packages/package-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
107 lines (107 loc) · 3.14 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"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",
"chat": "https://discord.gg/TFeEmCs"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/spiral"
}
],
"require": {
"ext-json": "*",
"php": ">=8.1",
"nyholm/psr7": "^1.5",
"mockery/mockery": "^1.5",
"phpunit/phpunit": "^9.6 || ^10.0",
"spiral/auth": "^3.14.8",
"spiral/auth-http": "^3.14.8",
"spiral/boot": "^3.14.8",
"spiral/events": "^3.14.8",
"spiral/console": "^3.14.8",
"spiral/core": "^3.14.8",
"spiral/http": "^3.14.8",
"spiral/mailer": "^3.14.8",
"spiral/queue": "^3.14.8",
"spiral/session": "^3.14.8",
"spiral/security": "^3.14.8",
"spiral/tokenizer": "^3.14.8",
"spiral/storage": "^3.14.8",
"spiral/views": "^3.14.8",
"spiral/translator": "^3.14.8",
"spiral/scaffolder": "^3.14.8",
"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-packages/league-event": "^1.0.1",
"spiral/code-style": "^2.2",
"spiral/dumper": "^3.3",
"spiral/framework": "^3.14.8",
"spiral/nyholm-bridge": "^1.3",
"spiral/roadrunner-bridge": "^2.2 || ^3.7 || ^4.0",
"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": {
"sort-packages": true,
"allow-plugins": {
"spiral/composer-publish-plugin": false
}
},
"scripts": {
"cs:diff": "php-cs-fixer fix --dry-run -v --diff",
"cs:fix": "php-cs-fixer fix -v",
"psalm": "psalm",
"psalm:baseline": "psalm --set-baseline=psalm-baseline.xml",
"test": "phpunit --color=always"
}
}