PHP code example of daniillgolovin / php-project-lvl1

1. Go to this page and download the library: Download daniillgolovin/php-project-lvl1 library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

daniillgolovin / php-project-lvl1 example snippets


⚠️ Перед установкой проекта проверьте наличие установленных php, composer!
bash
>> composer global 
bash
.
└── Brain-Games
    ├── Makefile
    ├── README.md
    ├── bin
    │   ├── brain-calc
    │   ├── brain-even
    │   ├── brain-games
    │   ├── brain-gcd
    │   ├── brain-prime
    │   └── brain-progression
    ├── composer.json
    ├── composer.lock
    └── src
        ├── Cli.php
        ├── Engine.php
        └── Games
            ├── Calc.php
            ├── Even.php
            ├── Gcd.php
            ├── Prime.php
            └── Progression.php

4 directories, 17 files