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
The recommended way to install DataCoder into the source code of the project is to handle it as code dependency by [Composer](http://getcomposer.org).
25
24
26
-
#### YAML PHP extension
27
-
28
-
YAML Coders uses [YAML PHP extension](http://php.net/manual/en/book.yaml.php) so it needs to be installed before any YAML Coder will be run.
29
-
30
-
##### PHP 7
31
-
32
-
```bash
33
-
sudo aptitude install php-pear libyaml-dev
34
-
pecl install yaml-beta
35
-
```
36
-
37
-
##### PHP 8
38
-
39
-
```bash
40
-
sudo aptitude install php-pear libyaml-dev
41
-
sudo aptitude install php8.0-dev
42
-
pecl install yaml
43
-
```
44
-
45
-
Don't forget to add `"extension=yaml.so"` line to your *php.ini* file.
46
-
47
25
#### cURL, php8.0-cli and Git
48
26
49
27
The command line tool cURL will be used to to download *Composer* installer and *php8.0-cli* for and running it to install Composer. Git is needed by to downloading dependencies by the Composer.
0 commit comments