Skip to content
This repository was archived by the owner on May 6, 2018. It is now read-only.

Add a basic installation guide #6

Merged
merged 2 commits into from
Nov 11, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 16 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,15 @@
margin-top: 1.5em;
}

ul li {
ul li, ol li {
line-height: 1.7;
}

a {
color: #333333;
}

ul {
ul, ol {
margin-top: 15px;
}

Expand Down Expand Up @@ -337,6 +337,20 @@ <h2 id="what-do-i-need">Awesome! What do I need?</h2>
These are unmaintained, but may provide a stopgap until you are able to update.
</p>

<h2 id="how-do-i-make-it-work">How do I make it work?</h2>
<p>
In a nutshell:
</p>

<ol>
<li>Install <em>PHP 7.1 or higher</em>.</li>
<li>In <code>php.ini</code>, enable the extensions <em>mbstring, openssl</em> and <em>sqlite (the PDO variant)</em>.</li>
<li>In Atom editor, install the <a href="https://atom.io/packages/php-integrator-base">base package</a> and its dependencies.</li>
<li>If necessary, give the path to your PHP binary in <em>Settings &rarr; Packages &rarr; php-integrator-base Settings &rarr; Core</em>.</li>
<li>Restart Atom and allow the base package to install the core.</li>
<li>Add your project in <em>Project Manager</em> and set it up.</li>
</ol>

<h2 id="what-is-it-really">Wait, now I'm confused, what is it really?</h2>
<p>
At the moment, PHP Integrator itself consists of a set of Atom packages written in CoffeeScript, backed by
Expand Down