summaryrefslogtreecommitdiff
path: root/doc/source/installation.rst
diff options
context:
space:
mode:
Diffstat (limited to 'doc/source/installation.rst')
-rw-r--r--doc/source/installation.rst33
1 files changed, 33 insertions, 0 deletions
diff --git a/doc/source/installation.rst b/doc/source/installation.rst
new file mode 100644
index 0000000..779008d
--- /dev/null
+++ b/doc/source/installation.rst
@@ -0,0 +1,33 @@
1Installation
2============
3
4Snuffleupagus is tested against various PHP 7+ versions: XXX
5
6Manual installation
7-------------------
8
9Depending on the system, we might already offer binary packages.
10You can check our :doc:`download`. In that case you only need to activate
11the extension inside your ``php.ini`` and to configure it.
12
13
14Quickstart
15^^^^^^^^^^
16
17::
18
19 git clone https://github.com/nbs-system/snuffleupagus
20 cd snuffleupagus
21 phpize
22 ./configure
23 make
24 make install
25
26This should install ``snuffleupagus.so`` file in your extension directory. The final step is adding a load directive to ``php.ini``::
27
28 extension=snuffleupagus.so
29
30Upgrading
31---------
32
33Upgrading the Snuffleupagus is as simple as recompiling it (or using a binary), replacing the file and restarting your webserver.