# Best PHP Packages in 2022

> Note: This post is constantly updating overtime. And not written prefessionally. Its just for the information.

Here are some of the best php packages:


### 1. erusev/parsedown
Better Markdown Parser in PHP.

Github : https://github.com/erusev/parsedown

Demo : http://parsedown.org/demo

### Installation
```composer
composer require erusev/parsedown
``` 

### Example

```php
$Parsedown = new Parsedown();

echo $Parsedown->text('Hello _Parsedown_!'); 
# prints: <p>Hello <em>Parsedown</em>!</p>
```

You can also parse inline markdown only:


```php
echo $Parsedown->line('Hello _Parsedown_!'); 
# prints: Hello <em>Parsedown</em>!
``` 

More examples in the [wiki](https://github.com/erusev/parsedown/wiki/) and in this [video tutorial](http://youtu.be/wYZBY8DEikI).

---

Thanks for visiting.




