Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/migueabellan/aoc

[WIP] Advent Of Code - Library PHP
https://github.com/migueabellan/aoc

advent-of-code

Last synced: 21 days ago
JSON representation

[WIP] Advent Of Code - Library PHP

Awesome Lists containing this project

README

        

# [WIP] Advent Of Code - Library

![Github](https://github.com/migueabellan/aoc/workflows/Test/badge.svg)
![Advent Of Code](https://img.shields.io/badge/Advent%20Of%20Code-library-orange?style=flat-square)
![php](https://img.shields.io/github/languages/top/migueabellan/aoc?style=flat-square)

# Table of Contents

- [Installation](#installation)
- [Basic Usage](#basic-usage)
- [Advanced Usage](#advanced-usage)
- [Utils](#utils)

## Installation

```sh
composer require migueabellan/aoc
```

## Basic Usage

Create a `.env.local` file to make environment variables.

```
# DO NOT COMMITTED THIS FILE

SESSION_AOC=your_cookie_session
```

### Autoloading

Supports `PSR-4` autoloaders.

```php
getInputBy(2020, 23);

echo $input; // 543769257...
```

## Advanced Usage

```php