Skip to content

Commit 947faa7

Browse files
committed
Fix styling
1 parent 550a6d7 commit 947faa7

2 files changed

Lines changed: 49 additions & 1 deletion

File tree

README.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

composer.json

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
{
2+
"name": "moox/devtools",
3+
"description": "This is a Meta Package to have all dev dependencies in one place. Just require-dev this package in your packages.",
4+
"type": "moox-core",
5+
"license": "MIT",
6+
"require": {
7+
"larastan/larastan": "^3.5",
8+
"laravel/pint": "^1.0",
9+
"orchestra/testbench": "^10.0",
10+
"pestphp/pest": "^4.0",
11+
"pestphp/pest-plugin-livewire": "^4.0",
12+
"pestphp/pest-plugin-laravel": "^4.0",
13+
"ryangjchandler/blade-capture-directive": "^1.0"
14+
},
15+
"autoload": {
16+
"psr-4": {
17+
"Moox\\DevTools\\": "src/"
18+
}
19+
},
20+
"autoload-dev": {
21+
"psr-4": {
22+
"Moox\\DevTools\\Tests\\": "tests"
23+
}
24+
},
25+
"scripts": {
26+
"test": "vendor/bin/pest",
27+
"lint": "vendor/bin/phpstan analyse --verbose --ansi",
28+
"format": "vendor/bin/pint",
29+
"analyze": "vendor/bin/phpstan analyse --memory-limit 512m",
30+
"build": "vendor/bin/testbench workbench:build",
31+
"serve": [
32+
"Composer\\Config::disableProcessTimeout",
33+
"@build",
34+
"vendor/bin/testbench serve"
35+
],
36+
"prepare": "vendor/bin/testbench package:discover",
37+
"clear": "vendor/bin/testbench package:purge-clipboard"
38+
},
39+
"minimum-stability": "dev",
40+
"prefer-stable": true,
41+
"extra": {
42+
"moox-stability": "stable"
43+
},
44+
"config": {
45+
"allow-plugins": {
46+
"pestphp/pest-plugin": true
47+
}
48+
}
49+
}

0 commit comments

Comments
 (0)