generated from pestphp/pest-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcomposer.json
96 lines (96 loc) · 2.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
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
{
"name": "defstudio/pest-plugin-laravel-expectations",
"description": "A plugin to add laravel tailored expectations to Pest",
"keywords": [
"php",
"framework",
"pest",
"unit",
"test",
"testing",
"plugin",
"laravel",
"expectations"
],
"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": {
"php": "^8.1.0",
"illuminate/contracts": "^10.0|^11.0.3",
"illuminate/database": "^10.0|^11.0.3",
"illuminate/http": "^10.0|^11.0.3",
"illuminate/support": "^10.0|^11.0.3",
"illuminate/testing": "^10.0|^11.0.3",
"pestphp/pest": "^2.0|^3.0",
"pestphp/pest-plugin": "^2.0|^3.0",
"pestphp/pest-plugin-laravel": "^2.0|^3.0"
},
"autoload": {
"psr-4": {
"DefStudio\\PestLaravelExpectations\\": "src/"
},
"files": [
"src/Autoload.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require-dev": {
"orchestra/testbench": "^8.0|^9.0",
"nesbot/carbon": "^2.62.1",
"laravel/pint": "^1.11.0",
"phpstan/phpstan": "^1.10.29",
"phpstan/phpstan-strict-rules": "^1.5.1",
"symfony/var-dumper": "^6.3.3|^v7.0.4",
"symplify/phpstan-rules": "^12.1.4.72",
"rector/rector": "^1.0.3",
"thecodingmachine/phpstan-strict-rules": "^1.0.0",
"ergebnis/phpstan-rules": "^2.1.0"
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"refactor": "rector",
"lint": "pint",
"test:refactor": "rector --dry-run",
"test:lint": "pint --test",
"test:types": "phpstan analyse --ansi --memory-limit=-1 --debug",
"test:unit": "php vendor/bin/pest --colors=always --exclude-group=integration --compact",
"update:snapshots": "REBUILD_SNAPSHOTS=true php vendor/bin/pest --colors=always",
"test": [
"@test:refactor",
"@test:lint",
"@test:types",
"@test:unit"
],
"coverage": "@test:unit --coverage"
}
}