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
[Documentation:Developer] Improve php unit test instructions (#686)
It turns out that no one knows how to run the full php unit test suite
and have it pass, so I investigated the php unit test instructions and
Improved them. @lavalleeale has some changes at
[https://github.com/Submitty/Submitty/pull/11802](url) to allow for the
full suite to pass so these docs should match that.
---------
Co-authored-by: Alex Lavallee <[email protected]>
Copy file name to clipboardExpand all lines: _docs/developer/testing/install_php.md
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ you will need to have PHP installed on your host machine first.
8
8
9
9
### Linux & WSL:
10
10
11
-
*If you're distro cannot find the correct package or installs the wrong version you may have to specify php7.0 in each package name*
11
+
*If you're distro cannot find the correct package or installs the wrong version you may have to specify php8.1 in each package name*
12
12
13
13
```bash
14
14
sudo apt-get update
@@ -23,6 +23,10 @@ If you are missing extensions you can install them with `PECL` which will be
23
23
installed automatically with PHP, but you should have everything required by
24
24
default.
25
25
26
+
### Windows
27
+
28
+
Download [php 8.1](https://windows.php.net/download/) as a zip file under the thread safe category. Then extract the contents of the zip to a folder, and add the path to that folder to your path system variable. It's suggested that one extracts the contents of the zip to a folder called `php`, which can be put at `C:\php` for simplicity. You can then add `C:\php` to your path system environment variable.
29
+
26
30
-------------
27
31
28
32
Verify you have PHP installed correctly, submitty requires a version greater than 7.0
0 commit comments