Skip to content

Commit 1c3b893

Browse files
committed
improve wording & open outbound links in new tab
1 parent 720afad commit 1c3b893

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

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

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,14 @@ order: 100
1414

1515
The best development experience for NativePHP is to have PHP and Node running on your development machine directly.
1616

17-
If you're using Mac or Windows, the most painless way to get PHP and Node up and running on your system is with
18-
[Laravel Herd](https://herd.laravel.com). It's fast and free!
17+
If you're using Mac or Windows, the most painless way to get PHP and Node up and running on your system is with <a href="https://herd.laravel.com" target="_blank" rel="noopener">Laravel Herd</a>. It's fast and free!
1918

20-
Please note that, whilst it's possible to develop and run your application from a virtualized environment or container,
19+
Please note that, while it's possible to develop and run your application from a virtualized environment or container,
2120
you may encounter more unexpected issues and have more manual steps to create working builds.
2221

2322
### Laravel
2423

25-
NativePHP is built to work with Laravel. You can install it into an existing Laravel application, or
26-
[start a new one](https://laravel.com/docs/installation).
24+
NativePHP is built to work with Laravel. You can install it into an existing Laravel application, or <a href="https://laravel.com/docs/installation" target="_blank" rel="noopener">start a new one</a>.
2725

2826
## Install NativePHP
2927

@@ -45,9 +43,9 @@ dependencies for your application to work with the Electron runtime.
4543

4644
It also publishes the NativePHP configuration file to `config/nativephp.php`.
4745

48-
It adds the `composer native:dev` script to your `composer.json`, which you are free to modify to suit your needs.
46+
It adds the `native:dev` script to your `composer.json`, which you are free to modify to suit your needs.
4947

50-
Then it installs the `php artisan native:install` script as a `post-update-cmd` so your environment is always up to date after a `composer update`.
48+
Then it registers the `php artisan native:install` command as a `post-update-cmd` so your environment is always up to date after a `composer update`.
5149

5250
Finally, it installs any other dependencies needed to run Electron.
5351

@@ -56,9 +54,9 @@ necessary dependencies are in place to build your application.**
5654

5755
### Publishing the Electron project
5856

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.
57+
If you need to make any specific adjustments to the underlying Electron app, you can 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.
6058

61-
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`.
59+
Additionally, this will modify your `post-update-cmd` script to keep your project up to date, but note that you may need to cherry-pick any adjustments you've made after a `composer update`.
6260

6361
## Start the development server
6462

0 commit comments

Comments
 (0)