-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
107 lines (107 loc) · 3.23 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
97
98
99
100
101
102
103
104
105
106
107
{
"name": "laravel/nightwatch",
"description": "The official Laravel Nightwatch package.",
"keywords": ["laravel", "monitoring", "insights"],
"homepage": "https://nightwatch.laravel.com",
"license": "AGPL-3.0-or-later",
"support": {
"docs": "https://nightwatch.laravel.com/docs",
"issues": "https://github.com/laravel/nightwatch/issues",
"source": "https://github.com/laravel/nightwatch"
},
"authors": [
{
"name": "Taylor Otwell",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"illuminate/console": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0",
"react/async": "^4.2",
"react/http": "^1.10.0",
"react/socket": "^1.15.0"
},
"require-dev": {
"laravel/pint": "1.18.3",
"mockery/mockery": "^1.6",
"mongodb/laravel-mongodb": "^5.1",
"orchestra/pest-plugin-testbench": "^3.1",
"orchestra/testbench": "^9.0",
"pestphp/pest": "^3.0",
"pestphp/pest-plugin-laravel": "^3.0",
"phpstan/phpstan": "^1.10",
"spatie/laravel-ignition": "^2.8"
},
"autoload": {
"psr-4": {
"Laravel\\Nightwatch\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"App\\": "workbench/app/",
"Database\\Factories\\": "workbench/database/factories/",
"Database\\Seeders\\": "workbench/database/seeders/"
}
},
"scripts": {
"post-autoload-dump": [
"@php vendor/bin/testbench package:purge-skeleton",
"@php vendor/bin/testbench package:discover",
"@build"
],
"dev": [
"Composer\\Config::disableProcessTimeout",
"npx concurrently -c \"#93c5fd,#fb7185\" \"composer agent\" \"sleep 2 && composer serve\" --names=agent,serve"
],
"serve": [
"Composer\\Config::disableProcessTimeout",
"@build",
"@php vendor/bin/testbench serve"
],
"agent": [
"Composer\\Config::disableProcessTimeout",
"@build",
"@putenv NIGHTWATCH_DEBUG=1",
"@php vendor/bin/testbench nightwatch:agent"
],
"build": [
"@php vendor/bin/testbench package:sync-skeleton",
"@php vendor/bin/testbench workbench:build"
],
"ci": [
"@composer test",
"@composer lint"
],
"lint": [
"@php vendor/bin/pint --config=pint.ci.json",
"@php vendor/bin/pint",
"@php vendor/bin/phpstan --memory-limit=-1 --verbose"
],
"test": [
"@php vendor/bin/testbench package:purge-skeleton",
"@php vendor/bin/pest"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
},
"laravel": {
"providers": [
"Laravel\\Nightwatch\\NightwatchServiceProvider"
]
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}