-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
117 lines (117 loc) · 3.61 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
108
109
110
111
112
113
114
115
116
117
{
"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",
"ext-zlib": "*",
"laravel/framework": "^10.0|^11.0",
"monolog/monolog": "^3.0",
"nesbot/carbon": "^2.0|^3.0",
"psr/http-message": "^1.0",
"psr/log": "^1.0|^2.0|^3.0",
"react/async": "^4.0",
"react/socket": "^1.0",
"symfony/console": "^7.0",
"symfony/http-foundation": "^7.0"
},
"require-dev": {
"guzzlehttp/promises": "^2.0",
"guzzlehttp/psr7": "^2.0",
"laravel/pint": "1.21.0",
"mockery/mockery": "^1.0",
"mongodb/laravel-mongodb": "^5.0",
"orchestra/pest-plugin-testbench": "^3.0",
"orchestra/testbench": "^9.0",
"orchestra/testbench-core": "^9.0",
"pestphp/pest": "^3.0",
"pestphp/pest-plugin-arch": "^3.0",
"pestphp/pest-plugin-laravel": "^3.0",
"phpstan/phpstan": "^1.0",
"ramsey/uuid": "^4.0",
"spatie/laravel-ignition": "^2.0",
"symfony/mailer": "^7.0",
"symfony/mime": "^7.0",
"symfony/var-dumper": "^7.0"
},
"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": {
"laravel": {
"providers": [
"Laravel\\Nightwatch\\NightwatchServiceProvider"
]
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}