Skip to content

Commit

Permalink
[breaking, upgrade] Add support for nova 4 (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexAzartsev authored Aug 10, 2022
1 parent 7e429c5 commit 669bacd
Show file tree
Hide file tree
Showing 1,631 changed files with 24,372 additions and 1,794 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Add HTTP basic auth credentials
run: echo '${{ secrets.COMPOSER_AUTH_JSON }}' > $GITHUB_WORKSPACE/auth.json
- name: Install composer dependencies
run: composer install
- name: Install modules
run: npm install
- name: Run ESLint
run: ./node_modules/.bin/eslint . --ext .js,.vue
- name: Test build icons script
run: npm run icons
run: ./node_modules/.bin/eslint --ext .js,.vue resources/
- name: Build dist
run: npm run prod
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
/.idea
/vendor
/node_modules
package-lock.json
composer.phar
composer.lock
phpunit.xml
.phpunit.result.cache
.DS_Store
Thumbs.db
/auth.json
11 changes: 9 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
}
],
"require": {
"php": ">=7.1.0"
"php": ">=7.1.0",
"laravel/nova": "^4.0"
},
"autoload": {
"psr-4": {
Expand All @@ -35,5 +36,11 @@
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
"prefer-stable": true,
"repositories": [
{
"type": "composer",
"url": "https://nova.laravel.com"
}
]
}
Loading

0 comments on commit 669bacd

Please sign in to comment.