Skip to content

Commit

Permalink
Merge pull request #530 from blendbyte/master
Browse files Browse the repository at this point in the history
Nova 5.0 Support
  • Loading branch information
voidgraphics authored Jan 18, 2025
2 parents a887ddb + 9816ba6 commit 8393ddd
Show file tree
Hide file tree
Showing 37 changed files with 13,209 additions and 7,332 deletions.
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
/.idea
/vendor
/node_modules
package-lock.json
composer.phar
composer.lock
phpunit.xml
.phpunit.result.cache
.DS_Store
Thumbs.db
yarn-error.log
webpack.mix.js
yarn.lock
39 changes: 28 additions & 11 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,15 @@
}
],
"require": {
"php": "^7.3|^8.0",
"php": "^8.1",
"ext-json": "*",
"laravel/framework": "^8.0|^9.0|^10.0|^11.0",
"laravel/nova": "^4.0",
"nova-kit/nova-packages-tool": "^1.3.1"
"laravel/nova": "^5.0"
},
"require-dev": {
"laravel/nova-devtool": "^1.1.5",
"laravel/pint": "^1.2",
"phpunit/phpunit": "^10.5",
"psalm/plugin-laravel": "^2.0"
},
"autoload": {
"psr-4": {
Expand All @@ -31,7 +35,10 @@
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
"Tests\\": "tests/",
"Workbench\\App\\": "workbench/app/",
"Workbench\\Database\\Factories\\": "workbench/database/factories/",
"Workbench\\Database\\Seeders\\": "workbench/database/seeders/"
}
},
"repositories": [
Expand All @@ -52,15 +59,25 @@
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"laravel/pint": "^1.2",
"phpunit/phpunit": "^9.5",
"psalm/plugin-laravel": "^2.0"
},
"scripts": {
"psalm": "psalm --find-unused-psalm-suppress --output-format=phpstorm",
"psalm-update-baseline": "psalm --set-baseline=psalm-baseline.xml",
"test": "phpunit --colors=always tests",
"fix-style": "./vendor/bin/pint"
"fix-style": "./vendor/bin/pint",
"post-autoload-dump": [
"@clear",
"@prepare"
],
"clear": "@php vendor/bin/testbench package:purge-skeleton --ansi",
"prepare": "@php vendor/bin/testbench package:discover --ansi",
"build": "@php vendor/bin/testbench workbench:build --ansi",
"serve": [
"Composer\\Config::disableProcessTimeout",
"@build",
"@php vendor/bin/testbench serve --ansi"
],
"lint": [
"@php vendor/bin/pint --ansi"
]
}
}
2 changes: 1 addition & 1 deletion dist/css/field.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/js/field.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/field.js.LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**!
* Sortable 1.15.0
* Sortable 1.15.6
* @author RubaXa <trash@rubaxa.org>
* @author owenm <owen23355@gmail.com>
* @license MIT
Expand Down
Loading

0 comments on commit 8393ddd

Please sign in to comment.