Skip to content

Commit

Permalink
Merge pull request #96 from thedevdojo/laravel-10
Browse files Browse the repository at this point in the history
Initial Laravel 10 upgrade
  • Loading branch information
tnylea committed Nov 10, 2023
2 parents 9fbcf8f + 86e7dd3 commit 45ccfa6
Show file tree
Hide file tree
Showing 6 changed files with 2,237 additions and 1,610 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Expand Up @@ -29,7 +29,7 @@ jobs:
strategy:
matrix:
operating-system: [ubuntu-latest]
php-versions: [ '8.0' ]
php-versions: [ '8.1' ]
dependency-stability: [ prefer-stable ]

name: P${{ matrix.php-versions }} - L${{ matrix.laravel }} - ${{ matrix.dependency-stability }} - ${{ matrix.operating-system}}
Expand Down
3 changes: 2 additions & 1 deletion README.md
Expand Up @@ -30,9 +30,10 @@ View a live [demo here](https://wave.devdojo.com), or deploy your own instance t

<a href="https://cloud.digitalocean.com/apps/new?repo=https://github.com/thedevdojo/wave/tree/main" target="_blank"><img src="https://www.deploytodo.com/do-btn-blue.svg" width="240" alt="Deploy to DO"></a>


## Installation

Wave runs on **PHP 8.1** and **Laravel 10.x**.

To install Wave, you'll want to clone or download this repo:

```
Expand Down
2 changes: 0 additions & 2 deletions app/Providers/AuthServiceProvider.php
Expand Up @@ -23,8 +23,6 @@ class AuthServiceProvider extends ServiceProvider
*/
public function boot()
{
$this->registerPolicies();

//
}
}
21 changes: 10 additions & 11 deletions composer.json
Expand Up @@ -8,31 +8,30 @@
"license": "MIT",
"type": "project",
"require": {
"php": "^8.0.2",
"php": "^8.1",
"ext-exif": "*",
"ext-gd": "*",
"ext-redis": "*",
"devdojo/app": "0.11.0",
"devdojo/themes": "0.0.7",
"guzzlehttp/guzzle": "^7.2",
"intervention/image": "^2.7",
"lab404/laravel-impersonate": "^1.7",
"laravel/framework": "^9.11",
"laravel/framework": "^10.0",
"laravel/tinker": "^2.7",
"livewire/livewire": "^2.4",
"tcg/voyager": "1.5.x-dev",
"tcg/voyager": "1.7",
"tymon/jwt-auth": "@dev"
},
"require-dev": {
"fakerphp/faker": "^1.9.1",
"laravel/dusk": "^6.0",
"laravel/dusk": "^7.8",
"laravel/sail": "^1.0.1",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^6.1",
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-laravel": "^1.2",
"phpunit/phpunit": "^9.5.10",
"spatie/laravel-ignition": "^1.0"
"nunomaduro/collision": "6.4.0|^7.0",
"pestphp/pest": "^2.8",
"pestphp/pest-plugin-laravel": "^2.1",
"phpunit/phpunit": "^10.0",
"spatie/laravel-ignition": "^2.0"
},
"autoload": {
"psr-4": {
Expand All @@ -50,7 +49,7 @@
"extra": {
"laravel": {
"dont-discover": [],
"providers" : [
"providers": [
"Wave\\WaveServiceProvider"
]
}
Expand Down

0 comments on commit 45ccfa6

Please sign in to comment.