https://github.com/migueabellan/aoc
[WIP] Advent Of Code - Library PHP
https://github.com/migueabellan/aoc
advent-of-code
Last synced: 5 months ago
JSON representation
[WIP] Advent Of Code - Library PHP
- Host: GitHub
- URL: https://github.com/migueabellan/aoc
- Owner: migueabellan
- License: mit
- Created: 2020-12-31T13:37:35.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-12-27T13:00:54.000Z (over 3 years ago)
- Last Synced: 2025-01-09T05:26:55.621Z (6 months ago)
- Topics: advent-of-code
- Language: PHP
- Homepage:
- Size: 29.3 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# [WIP] Advent Of Code - Library


# 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 FILESESSION_AOC=your_cookie_session
```### Autoloading
Supports `PSR-4` autoloaders.
```php
getInputBy(2020, 23);echo $input; // 543769257...
```## Advanced Usage
```php