Skip to content

Commit 720afad

Browse files
committed
remove references to Tauri
1 parent 9a1f03e commit 720afad

File tree

9 files changed

+12
-14
lines changed

9 files changed

+12
-14
lines changed

resources/views/docs/desktop/2/digging-deeper/broadcasting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ order: 100
55

66
# Broadcasting
77

8-
NativePHP facilitates event broadcasting of both [native events](#native-events) (emitted by Electron/Tauri) and
8+
NativePHP facilitates event broadcasting of both [native events](#native-events) (emitted by Electron) and
99
[custom events](#custom-events) dispatched by your Laravel app. You can listen to all of these events in your
1010
Laravel application as you normally would or in the [JavaScript](#listening-with-javascript) on your pages.
1111

resources/views/docs/desktop/2/digging-deeper/child-processes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ application is running on (Mac/Linux vs Windows).**
2929
**Where possible, you should explicitly reference binaries by their full path name, unless you can reliably assume that
3030
the executable you're trying to spawn is available in the user's `PATH`.**
3131

32-
Child Processes are managed by the runtime (Electron/Tauri) but are fully accessible to the Laravel side of your
32+
Child Processes are managed by the runtime (Electron) but are fully accessible to the Laravel side of your
3333
application.
3434

3535
---

resources/views/docs/desktop/2/digging-deeper/databases.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ You do not need to do anything special to configure your application to use SQLi
4040
In [development](/docs/getting-started/development), your application uses a database called `nativephp.sqlite`
4141
which is created in the build directory.
4242

43-
NativePHP forces your application to use this database when it is running within the Electron/Tauri environment so that
43+
NativePHP forces your application to use this database when it is running within the Electron environment so that
4444
it doesn't modify any other SQLite databases you may already be using.
4545

4646
## Migrations

resources/views/docs/desktop/2/getting-started/debugging.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,12 @@ This means that while some issues can be solved within NativePHP it's also very
1919
### The layers
2020

2121
- Your application, built on Laravel, using your local installations of PHP & Node.
22-
- NativePHP's development tools (`native:run` and `native:build`) manage the Electron/Tauri build processes - this is
22+
- NativePHP's development tools (`native:run` and `native:build`) manage the Electron build processes - this is
2323
what creates your Application Bundle.
2424
- NativePHP moves the appropriate version of a statically-compiled binary of PHP into your application's bundle - when
2525
your app boots, it's _this_ version of PHP that is being used to execute your PHP code, not your system's version of
2626
PHP.
27-
- Electron & Tauri use suites of platform-specific build tools and dependencies - Electron's ecosystem is mostly
28-
Javascript based, Tauri's is mostly Rust based. Much of this will be hidden away in your `vendor` directory.
27+
- Electron uses suites of platform-specific (mostly Javascript based) build tools and dependencies. Much of this will be hidden away in your `vendor` directory.
2928
- The operating system (OS) and its architecture (arch) - you can't build an application for one architecture and
3029
distribute it to a different OS/arch. It won't work. You must build your application to match the OS+arch combination
3130
where you want it to run.

resources/views/docs/desktop/2/getting-started/installation.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ you may encounter more unexpected issues and have more manual steps to create wo
2222

2323
### Laravel
2424

25-
NativePHP is built to work best with Laravel. You can install it into an existing Laravel application, or
25+
NativePHP is built to work with Laravel. You can install it into an existing Laravel application, or
2626
[start a new one](https://laravel.com/docs/installation).
2727

28-
## Install a NativePHP runtime
28+
## Install NativePHP
2929

3030
```shell
3131
composer require nativephp/desktop
@@ -41,7 +41,7 @@ php artisan native:install
4141
```
4242

4343
The NativePHP installer takes care of publishing the NativePHP service provider, which bootstraps the necessary
44-
dependencies for your application to work with the runtime you're using: Electron or Tauri.
44+
dependencies for your application to work with the Electron runtime.
4545

4646
It also publishes the NativePHP configuration file to `config/nativephp.php`.
4747

@@ -56,7 +56,7 @@ necessary dependencies are in place to build your application.**
5656

5757
### Publishing the Electron project
5858

59-
If you need to make any specific adjustments to the underlying Electron app, you are free to publish it using `php artisan native:install --publish`. This will export the Electron project to `{project-root}/nativephp/electron` and allow you to fully control all of NativePHP's inner workings.
59+
If you need to make any specific adjustments to the underlying Electron app, you are free to publish it using `php artisan native:install --publish`. This will export the Electron project to `{project-root}/nativephp/electron` and allow you to fully control all of NativePHP's inner workings.
6060

6161
Additionally this will modify your `post-update-cmd` script to keep your project up to date, but mind it's possible you'll need to cherry-pick any adjustments you've made after a `composer update`.
6262

resources/views/docs/desktop/2/getting-started/introduction.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@ NativePHP wouldn't be possible without the following projects and the hard work
8989

9090
- [PHP](https://php.net)
9191
- [Electron](https://electronjs.org)
92-
- [Tauri](https://tauri.app)
9392
- [Laravel](https://laravel.com)
9493
- [Symfony](https://symfony.com)
9594
- [Static PHP CLI](https://github.com/crazywhalecc/static-php-cli/)

resources/views/docs/desktop/2/publishing/building.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Before you prepare a distributable build, please make sure you've been through t
1616
## Building
1717

1818
The build process compiles your app for one platform at a time. It compiles your application along with the
19-
Electron/Tauri runtime into a single executable.
19+
Electron runtime into a single executable.
2020

2121
Once built, you can distribute your app however you prefer, but NativePHP also provides a [publish command](publishing)
2222
that will automatically upload your build artifacts to your chosen [provider](/docs/publishing/updating) - this allows

resources/views/docs/desktop/2/testing/basics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ order: 99
66
# Understanding fake test doubles
77

88
When working with a NativePHP application, you may encounter an elevated level of difficulty when writing tests for your code.
9-
This is because NativePHP relies on an Electron/Tauri application to be open at all times, listening to HTTP requests. Obviously,
9+
This is because NativePHP relies on an Electron application to be open at all times, listening to HTTP requests. Obviously,
1010
emulating this in a test environment can be cumbersome. You will often hit an HTTP error, and this is normal. This is where
1111
NativePHP's fake test doubles come in.
1212

resources/views/docs/desktop/2/the-basics/app-lifecycle.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ order: 1
77

88
When your NativePHP application starts - whether it's in development or production - it performs a series of steps to get your application up and running.
99

10-
1. The native shell (Electron or Tauri) is started.
10+
1. The native shell (Electron) is started.
1111
2. NativePHP runs `php artisan migrate` to ensure your database is up-to-date.
1212
3. NativePHP runs `php artisan serve` to start the PHP development server.
1313
4. NativePHP boots your application by running the `boot()` method on your `NativeAppServiceProvider`.

0 commit comments

Comments
 (0)