Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

do not really need the contracts #9

Merged
merged 8 commits into from
Jan 30, 2024
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest]
php: [8.3, 8.2, 8.1]
php: [8.3, 8.2]
laravel: [10.*]
stability: [prefer-lowest, prefer-stable]
include:
Expand Down
15 changes: 12 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,25 @@

1. Install Jetstream with livewire:

Using Laravel installer

```bash
laravel new jetpass-app --stack=livewire --jet --dark --api --dev
```

Using Composer

```bash
composer require laravel/jetstream
```

```bash
php artisan jetstream:install livewire
php artisan jetstream:install livewire --api
```
See [Docs](https://jetstream.laravel.com/2.x/installation.html) for more info.

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

1. Install this package:


```bash
Expand Down
2 changes: 0 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@
],
"require": {
"php": "^8.1",
"illuminate/contracts": "^10.0|^11.0",
"laravel/jetstream": "^4.2|^5.0",
"laravel/passport": "*",
"livewire/livewire": "^3.4",
"spatie/laravel-package-tools": "^1.16.2"
Expand Down