Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/migueabellan/advent-of-code-php

My solutions to Advent of Code 2015 - 2021 (PHP)
https://github.com/migueabellan/advent-of-code-php

advent-of-code-2015 advent-of-code-2016 advent-of-code-2017 advent-of-code-2018 advent-of-code-2019 advent-of-code-2020 advent-of-code-2021 advent-of-code-2022

Last synced: about 2 months ago
JSON representation

My solutions to Advent of Code 2015 - 2021 (PHP)

Awesome Lists containing this project

README

        

# Advent Of Code (PHP)

![Github](https://github.com/migueabellan/advent-of-code-php/workflows/Test/badge.svg)
![php](https://img.shields.io/github/languages/top/migueabellan/advent-of-code-php?style=flat-square)


## Installation with docker

### Requirement

- docker 19 or Higher

### Running

```sh
$ git clone [email protected]:migueabellan/advent-of-code-php.git

$ docker-compose build
$ docker-compose up -d

$ docker-compose exec php composer install
```

```sh
$ docker-compose exec php bin/console puzzle:exec [-y|--year YEAR] [-d|--day DAY] [-p|--puzzle PUZZLE]
```

## Installation without docker

### Requirement

- php 8.1 or Higher

### Running

```sh
$ git clone [email protected]:migueabellan/advent-of-code-php.git

$ composer install
```

```sh
$ php bin/console puzzle:exec [-y|--year YEAR] [-d|--day DAY] [-p|--puzzle PUZZLE]
```