https://github.com/migueabellan/advent-of-code-php
My solutions to Advent of Code 2015 - 2024 (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 advent-of-code-2023 advent-of-code-2024
Last synced: 2 months ago
JSON representation
My solutions to Advent of Code 2015 - 2024 (PHP)
- Host: GitHub
- URL: https://github.com/migueabellan/advent-of-code-php
- Owner: migueabellan
- License: mit
- Created: 2020-12-01T19:55:38.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2025-01-02T06:06:41.000Z (6 months ago)
- Last Synced: 2025-03-29T20:51:13.226Z (3 months 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, advent-of-code-2023, advent-of-code-2024
- Language: PHP
- Homepage: https://adventofcode.com
- Size: 1.07 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Advent Of Code (PHP)


## 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]
```