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
Copy file name to clipboardExpand all lines: documentation/start/getting-started.html
+20-20Lines changed: 20 additions & 20 deletions
Original file line number
Diff line number
Diff line change
@@ -216,23 +216,23 @@ <h1>Installation</h1>
216
216
<h2>Install Starter Application</h2>
217
217
218
218
<p>Windwalker use <ahref="https://getcomposer.org/">Composer</a> as package manager, make sure you <ahref="https://getcomposer.org/download/">install composer</a>
219
-
before installing it.</p>
219
+
first.</p>
220
220
221
-
<p>To start install Windwalker, please open terminal and type this command:</p>
221
+
<p>To start install Windwalker, please open terminal and type the following:</p>
<p>If you want to use unit test or develop Windwalker it-self, remove <code>--no-dev</code> option.</p>
227
+
<p>For use of unit test or any development purpose, simply remove <code>--no-dev</code> option.</p>
228
228
</blockquote>
229
229
230
230
<p>The <ahref="https://github.com/ventoviro/windwalker-starter">Starter</a> package is a default application to start a project (like Symfony Standard).
231
231
If you want to use Windwalker as a library, see next section.</p>
232
232
233
233
<h2>Use Windwalker as Library</h2>
234
234
235
-
<p>If you have your own application project and want to include Windwalker as library, just add <code>windwalker/framework</code>to require block in <code>composer.json</code>.</p>
235
+
<p>Add <code>windwalker/framework</code>as your project's dependencies in <code>composer.json</code>.</p>
236
236
237
237
<pre><codeclass="json">{
238
238
"require": {
@@ -242,10 +242,10 @@ <h2>Use Windwalker as Library</h2>
242
242
</code></pre>
243
243
244
244
<blockquote>
245
-
<p><code>~2.0</code>means 2.0 to 2.9</p>
245
+
<p><code>~2.0</code>is equivalent to 2.0 to 2.9</p>
246
246
</blockquote>
247
247
248
-
<p>You can also install specific packages instead install whole framework. This is an example to install Session and Form package:</p>
248
+
<p>You can also pick any child packages rather than the complete framework set. This is an example to install Session and Form package:</p>
249
249
250
250
<pre><codeclass="json">{
251
251
"require": {
@@ -265,7 +265,7 @@ <h2>Open Windwalker Public Root</h2>
0 commit comments