Skip to content

Commit

Permalink
Merge pull request #21 from headerx/main
Browse files Browse the repository at this point in the history
Main
  • Loading branch information
inmanturbo authored Feb 24, 2024
2 parents d062f43 + 0c298a4 commit bb4d93b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/test-stubs.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
name: run-tests
name: test-stubs

on:
push:
paths:
- '**.php'
- '.github/workflows/run-tests.yml'
- '.github/workflows/test-stubs.yml'
- 'phpunit.xml.dist'
- 'composer.json'
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ laravel new jetpass-app --stack=livewire --jet --dark --api --dev
Using Composer

```bash
composer require laravel/jetstream
composer require "laravel/jetstream:^5.x-dev"
```

```bash
Expand All @@ -27,11 +27,11 @@ php artisan jetstream:install livewire --api --dark --pest

See [Docs](https://jetstream.laravel.com/installation.html) for more info.

1. Install this package:
2. Install this package:


```bash
composer require headerx/laravel-jetstream-passport
composer require "headerx/laravel-jetstream-passport:^1.0"
```

```bash
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use Illuminate\Support\ServiceProvider;
use Laravel\Passport\Passport;

class PassportServiceProvider extends ServiceProvider
class ApiServiceProvider extends ServiceProvider
{
/**
* Register services.
Expand Down
2 changes: 1 addition & 1 deletion stubs/bootstrap/providers.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
// This file is automatically generated by Laravel...

return [
App\Providers\ApiServiceProvider::class,
App\Providers\AppServiceProvider::class,
App\Providers\FortifyServiceProvider::class,
App\Providers\JetstreamServiceProvider::class,
App\Providers\PassportServiceProvider::class,
];

0 comments on commit bb4d93b

Please sign in to comment.