Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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)
- Host: GitHub
- URL: https://github.com/migueabellan/advent-of-code-php
- Owner: migueabellan
- License: mit
- Created: 2020-12-01T19:55:38.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T11:12:40.000Z (about 2 years ago)
- Last Synced: 2023-11-03T08:25:09.827Z (about 1 year ago)
- Topics: 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
- Language: PHP
- Homepage: https://adventofcode.com
- Size: 1 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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]
```