This repository has been archived by the owner on Nov 24, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
64 lines (64 loc) · 1.64 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
{
"name": "fidum/laravel-blueprint-pestphp-addon",
"description": "Generate pestphp tests from your laravel blueprint!",
"keywords": [
"fidum",
"laravel-shift",
"blueprint",
"laravel-blueprint-pestphp-addon",
"pest",
"pestphp"
],
"homepage": "https://github.com/fidum/laravel-blueprint-pestphp-addon",
"license": "MIT",
"authors": [
{
"name": "Daniel Mason",
"email": "[email protected]",
"homepage": "https://fidum.uk",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"jasonmccreary/laravel-test-assertions": "^2.2",
"laravel-shift/blueprint": "^2.6.1"
},
"require-dev": {
"mockery/mockery": "^1.5.1",
"orchestra/testbench": "^8.0.4",
"pestphp/pest": "^1.22.4",
"phpunit/phpunit": "^9.6.4",
"spatie/pest-plugin-snapshots": "^1.1",
"vimeo/psalm": "^4.30"
},
"autoload": {
"psr-4": {
"Fidum\\BlueprintPestAddon\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Fidum\\BlueprintPestAddon\\Tests\\": "tests"
}
},
"scripts": {
"psalm": "vendor/bin/psalm",
"test": "vendor/bin/pest"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"Fidum\\BlueprintPestAddon\\BlueprintPestAddonServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}