-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
48 lines (48 loc) · 1.21 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
{
"name": "bradietilley/pest-stories",
"description": "A tool to assist in creating complex permutations of test case scenarios in Pest PHP (for Laravel)",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"BradieTilley\\Stories\\": "src/"
},
"files": [
"src/Helpers/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"authors": [
{
"name": "Bradie Tilley",
"homepage": "https://github.com/bradietilley"
}
],
"scripts": {
"test": "vendor/bin/pest",
"pint": "vendor/bin/pint",
"stan": "vendor/bin/phpstan analyse --no-progress --ansi"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"orchestra/testbench": "^8.0",
"symfony/var-dumper": "^6.1.5",
"laravel/pint": "^1.4",
"phpstan/phpstan": "^1.8"
},
"require": {
"pestphp/pest": "^2.0",
"illuminate/support": "^10.0",
"illuminate/container": "^10.0"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}