+How do I various presets to show up?
+
+You must set these presets up in a JSON file, located in `~/.config/phpmon/config.json`.
+
+You must have set up at least one valid preset for this presets to work in PHP Monitor.
+
+Here's an example of a working preset:
+
+
+{
+ "scan_apps": [],
+ "presets": [
+ {
+ "name": "Legacy Project",
+ "php": "8.0",
+ "extensions": {
+ "xdebug": false
+ },
+ "configuration": {
+ "memory_limit": "128M",
+ "upload_max_filesize": "128M",
+ "post_max_size": "128M"
+ }
+ }
+ ]
+}
+
+
+You can omit the `php` key in the preset if you do not wish for the preset to switch to a given PHP version.
+
+