Skip to content

Commit c510026

Browse files
committed
Remove Tauri
1 parent b4cab79 commit c510026

File tree

11 files changed

+14
-20
lines changed

11 files changed

+14
-20
lines changed

public/funding.json

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,14 @@
1919
"url": "https://nativephp.com/"
2020
},
2121
"repositoryUrl": {
22-
"url": "https://github.com/nativephp/laravel",
23-
"wellKnown": "https://github.com/nativephp/laravel/raw/main/.well-known/funding-manifest-urls"
22+
"url": "https://github.com/nativephp/desktop",
23+
"wellKnown": "https://github.com/nativephp/desktop/raw/main/.well-known/funding-manifest-urls"
2424
},
2525
"licenses": ["spdx:MIT"],
26-
"tags": ["php", "laravel", "electron", "tauri"]
26+
"tags": ["php", "laravel", "electron"]
2727
}],
2828
"funding": {
2929
"channels": [
30-
{
31-
"guid": "github-sponsors",
32-
"type": "other",
33-
"address": "https://github.com/sponsors/simonhamp"
34-
},
3530
{
3631
"guid": "open-collective",
3732
"type": "other",

resources/views/docs/desktop/1/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/1/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/1/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/1/getting-started/debugging.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ 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:serve` and `native:build`) manage the Electron/Tauri build processes - this is
22+
- NativePHP's development tools (`native:serve` 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 a suite of platform-specific build tools and dependencies - Electron's ecosystem is mostly
28+
Javascript based. Much of this will be hidden away in your `vendor` directory.
2929
- The operating system (OS) and its architecture (arch) - you can't build an application for one architecture and
3030
distribute it to a different OS/arch. It won't work. You must build your application to match the OS+arch combination
3131
where you want it to run.

resources/views/docs/desktop/1/getting-started/development.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This is known as 'running a dev build'.
2020

2121
### What does the `native:serve` command do?
2222

23-
The `native:serve` command runs the Electron/Tauri 'debug build' commands, which build your application with various
23+
The `native:serve` command runs the Electron 'debug build' commands, which build your application with various
2424
debug options set to help make debugging easier, such as allowing you to show the Dev Tools in the embedded web view.
2525

2626
It also keeps the connection to the terminal open so you can see and inspect useful output from your app, such as logs,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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 Electron.
4545

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

resources/views/docs/desktop/1/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/1/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/1/testing/basics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ order: 99
44
---
55
# Understanding fake test doubles
66
When working with a NativePHP application, you may encounter an elevated level of difficulty when writing tests for your code.
7-
This is because NativePHP relies on an Electron/Tauri application to be open at all times, listening to HTTP requests. Obviously,
7+
This is because NativePHP relies on an Electron application to be open at all times, listening to HTTP requests. Obviously,
88
emulating this in a test environment can be cumbersome. You will often hit an HTTP error, and this is normal. This is where
99
NativePHP's fake test doubles come in.
1010

0 commit comments

Comments
 (0)