Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 0 additions & 39 deletions .php-cs-fixer.dist.php

This file was deleted.

3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"nuxt.isNuxtApp": false
}
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) princip
## 1.0.0 - 2022-06-01

- Initial release following the fork of [emilianotisato/nova-google-autocomplete-field](https://github.com/emilianotisato/nova-google-autocomplete-field)
- Laravel Nova 4 compatibility
- Laravel Nova 4 compatibility
19 changes: 16 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
],
"require": {
"php": "^8.0",
"laravel/nova": "^4.0"
"laravel/nova": "^5.0"
},
"autoload": {
"psr-4": {
Expand All @@ -48,14 +48,27 @@
}
},
"scripts": {
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes"
"style-fix": "vendor/bin/pint",
"style-check": "./vendor/bin/pint --test",
"rector-dry": [
"./vendor/bin/rector process --dry-run"
],
"rector-fix": [
"./vendor/bin/rector process"
],
"ci-check": [
"composer style-check",
"composer rector-dry"
]
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8"
"rector/rector": "^1.1",
"driftingly/rector-laravel": "^1.2",
"laravel/pint": "^1.0"
}
}
2 changes: 1 addition & 1 deletion config/nova-google-autocomplete.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

return [
// Get your key from https://console.developers.google.com
'api_key' => env('NOVA_GOOGLE_AUTOCOMPLETE_API_KEY', '')
'api_key' => env('NOVA_GOOGLE_AUTOCOMPLETE_API_KEY', ''),
];
Loading