Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pvillareal/coding-practice-php
Coding algorithms using PHP
https://github.com/pvillareal/coding-practice-php
algorithm-challenges codecoverage docker php php83 phpunit tdd
Last synced: about 1 month ago
JSON representation
Coding algorithms using PHP
- Host: GitHub
- URL: https://github.com/pvillareal/coding-practice-php
- Owner: pvillareal
- Created: 2020-01-21T06:05:28.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-07-03T03:57:14.000Z (7 months ago)
- Last Synced: 2024-10-30T16:53:45.691Z (3 months ago)
- Topics: algorithm-challenges, codecoverage, docker, php, php83, phpunit, tdd
- Language: PHP
- Homepage:
- Size: 71.3 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# About This Repo
This is a personal repository filled with the interview questions I was asked and failed to answer.
In a way I guess this is also proof to myself that I know I can answer those questions and I know that interviews can be a bit hard and draining sometimes.### Why create something like this?
Practice makes perfect, giving myself some time to produce and perfect the solutions I am thinking of during the interviews.### Composer
Tired of having the phar file onto your computer. Add this to your `~/bash_profile`.
```bash
alias composer="docker run --rm --interactive --tty --volume $PWD:/app composer/composer"
```### Docker
I included the Docker environment that I use to run and test the solutions. Instructions to add to local on [DockerHub](https://hub.docker.com/r/pvillareal/php)
```bash
docker pull pvillareal/php:8.3-cli
```