generated from pestphp/pest-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
72 lines (72 loc) · 2.17 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
{
"name": "orchestra/pest-plugin-testbench",
"description": "Pest plugin for Testbench",
"keywords": ["php", "framework", "pest", "unit", "test", "testing", "plugin"],
"license": "MIT",
"autoload": {
"psr-4": {
"Orchestra\\Testbench\\Pest\\": "src/"
},
"files": [
"src/Autoload.php"
]
},
"autoload-dev": {
"psr-4": {
"Orchestra\\Testbench\\Pest\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.2",
"orchestra/testbench": "^9.5.2 || ^10.0",
"pestphp/pest": "^3.4.1",
"pestphp/pest-plugin-laravel": "^3.1",
"symfony/polyfill-php82": "^1.31",
"symfony/polyfill-php83": "^1.31"
},
"require-dev": {
"laravel/pint": "^1.11",
"orchestra/testbench-dusk": "^9.5 || ^10.0",
"phpstan/phpstan": "^1.11",
"rector/rector": "^1.0",
"symfony/var-dumper": "^7.0",
"symplify/phpstan-rules": "^12.3.1",
"thecodingmachine/phpstan-strict-rules": "^1.0.0"
},
"config": {
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"post-autoload-dump": [
"@clear",
"@prepare"
],
"clear": "@php testbench package:purge-skeleton --ansi",
"prepare": "@php testbench package:discover --ansi",
"lint": [
"@php vendor/bin/rector --ansi",
"@php vendor/bin/pint --ansi",
"@php vendor/bin/phpstan analyse --verbose --ansi"
],
"test": "@php vendor/bin/pest --colors=always",
"dusk:prepare": "@php vendor/bin/dusk-updater detect --auto-update --ansi",
"dusk:serve": [
"@php vendor/bin/testbench-dusk package:create-sqlite-db --ansi",
"@php vendor/bin/testbench-dusk serve --ansi"
],
"dusk": [
"@dusk:prepare",
"@php vendor/bin/pest -c phpunit.dusk.xml --colors=always"
],
"ci": [
"@lint",
"@test"
]
},
"prefer-stable": true,
"minimum-stability": "dev"
}