-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.46 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.46 KB
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
{
"name": "moox/devtools",
"description": "This is a Meta Package to have all dev dependencies in one place. Just require-dev this package in your packages.",
"type": "moox-core",
"license": "MIT",
"require": {
"larastan/larastan": "^3.5",
"laravel/pint": "^1.0",
"orchestra/testbench": "^10.0",
"pestphp/pest": "^4.0",
"pestphp/pest-plugin-livewire": "^4.0",
"pestphp/pest-plugin-laravel": "^4.0",
"ryangjchandler/blade-capture-directive": "^1.0"
},
"autoload": {
"psr-4": {
"Moox\\DevTools\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Moox\\DevTools\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/pest",
"lint": "vendor/bin/phpstan analyse --verbose --ansi",
"format": "vendor/bin/pint",
"analyze": "vendor/bin/phpstan analyse --memory-limit 512m",
"build": "vendor/bin/testbench workbench:build",
"serve": [
"Composer\\Config::disableProcessTimeout",
"@build",
"vendor/bin/testbench serve"
],
"prepare": "vendor/bin/testbench package:discover",
"clear": "vendor/bin/testbench package:purge-clipboard"
},
"prefer-stable": true,
"extra": {
"moox": {
"stability": "stable"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}