-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 1.75 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
{
"name": "defstudio/laravel-dev-dependencies",
"description": "A collection of laravel development dependencies",
"type": "library",
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"authors": [
{
"name": "Fabio Ivona",
"email": "[email protected]",
"homepage": "https://defstudio.it",
"role": "Developer"
},
{
"name": "Daniele Romeo",
"email": "[email protected]",
"homepage": "https://defstudio.it",
"role": "Developer"
}
],
"require": {
"nunomaduro/larastan": "^2.0",
"friendsofphp/php-cs-fixer": "^v3.3",
"defstudio/pest-plugin-laravel-expectations": "^1.0|dev-master",
"pestphp/pest": "^v1.18|^v2.x-dev",
"pestphp/pest-plugin-faker": "^1.0|^2.x-dev",
"pestphp/pest-plugin-laravel": "^1.0|^2.x-dev",
"pestphp/pest-plugin-mock": "^1.0|^2.x-dev",
"pestphp/pest-plugin-parallel": "^0.3|^1.0|^2.x-dev",
"pestphp/pest-plugin-livewire": "^v1.0|^2.x-dev",
"spatie/pest-plugin-test-time": "^1.0|^2.x-dev",
"spatie/x-ray": "dev-main",
"infection/infection": "^0.26.0"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/def-studio/x-ray.git"
}
],
"autoload": {
"psr-4": {
"DefStudio\\LaravelDevDependencies\\": "src"
},
"files": [
"src/Pest/helpers.php"
]
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"DefStudio\\LaravelDevDependencies\\ServiceProvider"
]
}
}
}