Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/migueabellan/aoc
- Owner: migueabellan
- License: mit
- Created: 2020-12-31T13:37:35.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-12-27T13:00:54.000Z (about 3 years ago)
- Last Synced: 2024-11-11T07:44:58.632Z (3 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
![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 FILESESSION_AOC=your_cookie_session
```### Autoloading
Supports `PSR-4` autoloaders.
```php
getInputBy(2020, 23);echo $input; // 543769257...
```## Advanced Usage
```php