Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed formatting in README #924

Merged
merged 1 commit into from
Sep 8, 2019
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
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The code in this repository is written in PHP.
Install Composer in a common location or in your project:

```bash
curl -s http://getcomposer.org/installer | php
curl -s https://getcomposer.org/installer | php
```

Then create the `composer.json` file as follows:
Expand Down Expand Up @@ -52,13 +52,13 @@ $ php composer.phar install

Just clone the repository in a common location or inside your project:

```
```bash
git clone https://github.com/phalcon/incubator.git
```

For a specific git branch (eg 2.0.13) please use:
For a specific git branch (eg `2.0.13`) please use:

```
```bash
git clone -b 2.0.13 [email protected]:phalcon/incubator.git
```

Expand All @@ -68,7 +68,6 @@ Add or register the following namespace strategy to your `Phalcon\Loader` in ord
to load classes from the incubator repository:

```php

$loader = new Phalcon\Loader();

$loader->registerNamespaces(
Expand Down