diff options
| author | Sebastien Blot | 2017-09-20 10:11:01 +0200 |
|---|---|---|
| committer | Sebastien Blot | 2017-09-20 10:11:01 +0200 |
| commit | 868f96c759b6650d88ff9f4fbc5c048302134248 (patch) | |
| tree | c0de0af318bf77a8959164ef11aeeeb2b7bab294 /doc/source/installation.rst | |
Initial import
Diffstat (limited to 'doc/source/installation.rst')
| -rw-r--r-- | doc/source/installation.rst | 33 |
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 @@ | |||
| 1 | Installation | ||
| 2 | ============ | ||
| 3 | |||
| 4 | Snuffleupagus is tested against various PHP 7+ versions: XXX | ||
| 5 | |||
| 6 | Manual installation | ||
| 7 | ------------------- | ||
| 8 | |||
| 9 | Depending on the system, we might already offer binary packages. | ||
| 10 | You can check our :doc:`download`. In that case you only need to activate | ||
| 11 | the extension inside your ``php.ini`` and to configure it. | ||
| 12 | |||
| 13 | |||
| 14 | Quickstart | ||
| 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 | |||
| 26 | This 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 | |||
| 30 | Upgrading | ||
| 31 | --------- | ||
| 32 | |||
| 33 | Upgrading the Snuffleupagus is as simple as recompiling it (or using a binary), replacing the file and restarting your webserver. | ||
