You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Next step is to install [Composer 2](/installation/requirements/essential-tools-for-php#composer-2). At this point, the installation is the same for MacOS, Linux and Windows WSL2. The full instructions for installing Composer can be found at their [website](https://getcomposer.org/doc/00-intro.md#installation-linux-unix-osx). We **strongly recommend that you install [Composer globally](https://getcomposer.org/doc/00-intro.md#globally)** on your system. This will let you run Composer using the `composer` command.
113
113
114
114
```bash
115
-
mv composer.phar /usr/local/bin/composer
115
+
sudo mv composer.phar /usr/local/bin/composer
116
116
```
117
117
118
118
> [!WARNING]
@@ -137,15 +137,15 @@ Node.js has an installer that you can use for MacOS - [Node.js Download](https:/
137
137
138
138
#### Linux & Windows WSL2
139
139
140
-
Node.js binary distributions are available from [NodeSource](https://github.com/nodesource/distributions#nodejs).
140
+
Node.js binary distributions are available from [NodeSource](https://nodesource.com/products/distributions).
141
141
142
142
#### Preflight checks
143
143
144
144
To check if Node.js is installed:
145
145
146
146
```bash
147
147
$ node -v
148
-
v18.17.1
148
+
v24.14.0
149
149
```
150
150
151
151
### npm
@@ -160,7 +160,7 @@ To check which version of Npm is installed:
160
160
161
161
```bash
162
162
$ npm -v
163
-
10.1.0
163
+
11.11.1
164
164
```
165
165
166
166
UserFrosting build scripts will automatically install all other Node and NPM dependencies for you !
@@ -180,7 +180,7 @@ While multiple solutions are available, two are recommended by UserFrosting : **
180
180
181
181
[Mailpit](https://github.com/axllent/mailpit) is a small, fast, low memory, zero-dependency, multi-platform email testing tool & API for developers. Mailpit runs locally, acts as a *fake* SMTP server and provides a modern web interface to view &test captured emails. Oh, and **it's free and Open Source**!
182
182
183
-
Mailpit can be installed on [MacOS through Homebrew](https://github.com/axllent/mailpit#install-via-package-managers), on Linux/WSL2 through their Bash Script](https://github.com/axllent/mailpit#install-via-bash-script-linux--mac), or through [Docker](https://mailpit.axllent.org/docs/install/docker/). By default, Mailpit UI can be access at [http://0.0.0.0:8025](http://0.0.0.0:8025).
183
+
Mailpit can be installed on [MacOS through Homebrew](https://github.com/axllent/mailpit#install-via-package-managers), on [Linux/WSL2 through their Bash Script](https://github.com/axllent/mailpit#install-via-bash-script-linux--mac), or through [Docker](https://mailpit.axllent.org/docs/install/docker/). By default, Mailpit UI can be access at [http://0.0.0.0:8025](http://0.0.0.0:8025).
184
184
185
185
When using Mailpit with UserFrosting, the following parameters will need to be provided during UserFrosting installation, which we'll see on the next page :
0 commit comments