Skip to content

Commit ddf2254

Browse files
authored
Merge pull request #1 from crynobone/workbench
Workbench
2 parents 275b737 + c932e45 commit ddf2254

31 files changed

+13181
-7019
lines changed

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
/.idea
22
/vendor
33
/node_modules
4-
package-lock.json
54
composer.phar
65
composer.lock
76
phpunit.xml
87
.phpunit.result.cache
98
.DS_Store
109
Thumbs.db
11-
yarn-error.log
10+
yarn.lock

composer.json

Lines changed: 23 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@
2323
"laravel/nova": "^5.0"
2424
},
2525
"require-dev": {
26+
"laravel/nova-devtool": "^1.1.5",
2627
"laravel/pint": "^1.2",
27-
"phpunit/phpunit": "^9.5",
28-
"psalm/plugin-laravel": "^2.0",
29-
"laravel/nova-devtool": "^1.1.4"
28+
"phpunit/phpunit": "^10.5",
29+
"psalm/plugin-laravel": "^2.0"
3030
},
3131
"autoload": {
3232
"psr-4": {
@@ -35,7 +35,10 @@
3535
},
3636
"autoload-dev": {
3737
"psr-4": {
38-
"Tests\\": "tests/"
38+
"Tests\\": "tests/",
39+
"Workbench\\App\\": "workbench/app/",
40+
"Workbench\\Database\\Factories\\": "workbench/database/factories/",
41+
"Workbench\\Database\\Seeders\\": "workbench/database/seeders/"
3942
}
4043
},
4144
"repositories": [
@@ -56,11 +59,25 @@
5659
},
5760
"minimum-stability": "dev",
5861
"prefer-stable": true,
59-
6062
"scripts": {
6163
"psalm": "psalm --find-unused-psalm-suppress --output-format=phpstorm",
6264
"psalm-update-baseline": "psalm --set-baseline=psalm-baseline.xml",
6365
"test": "phpunit --colors=always tests",
64-
"fix-style": "./vendor/bin/pint"
66+
"fix-style": "./vendor/bin/pint",
67+
"post-autoload-dump": [
68+
"@clear",
69+
"@prepare"
70+
],
71+
"clear": "@php vendor/bin/testbench package:purge-skeleton --ansi",
72+
"prepare": "@php vendor/bin/testbench package:discover --ansi",
73+
"build": "@php vendor/bin/testbench workbench:build --ansi",
74+
"serve": [
75+
"Composer\\Config::disableProcessTimeout",
76+
"@build",
77+
"@php vendor/bin/testbench serve --ansi"
78+
],
79+
"lint": [
80+
"@php vendor/bin/pint --ansi"
81+
]
6582
}
6683
}

dist/js/field.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)