{"id":28236690,"url":"https://github.com/edumarques/parking-lot","last_synced_at":"2025-08-27T19:04:01.127Z","repository":{"id":176130877,"uuid":"654675515","full_name":"edumarques/parking-lot","owner":"edumarques","description":"Simple software solution that enables management of a parking lot.","archived":false,"fork":false,"pushed_at":"2023-06-17T17:49:06.000Z","size":690,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-10T13:49:03.589Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/edumarques.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-06-16T17:02:31.000Z","updated_at":"2023-06-17T17:22:21.000Z","dependencies_parsed_at":null,"dependency_job_id":"54f91055-34ed-42ad-9b7f-f15aaa246c1b","html_url":"https://github.com/edumarques/parking-lot","commit_stats":null,"previous_names":["edumarques/parking-lot"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/edumarques/parking-lot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edumarques%2Fparking-lot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edumarques%2Fparking-lot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edumarques%2Fparking-lot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edumarques%2Fparking-lot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/edumarques","download_url":"https://codeload.github.com/edumarques/parking-lot/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edumarques%2Fparking-lot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272365910,"owners_count":24922046,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-27T02:00:09.397Z","response_time":76,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-05-19T00:16:10.458Z","updated_at":"2025-08-27T19:04:01.112Z","avatar_url":"https://github.com/edumarques.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n# Parking Lot Manager\n\nSimple software solution that enables management of a parking lot.\n\n![GitHub](https://img.shields.io/github/license/edumarques/parking-lot)\n[![edumarques](https://circleci.com/gh/edumarques/parking-lot.svg?style=shield)](https://app.circleci.com/pipelines/github/edumarques)\n[![codecov](https://codecov.io/gh/edumarques/parking-lot/branch/main/graph/badge.svg?token=ABGMyvr355)](https://codecov.io/gh/edumarques/parking-lot)\n\n\u003c/div\u003e\n\n## Installation\n\nThe project can be installed and run using *Docker* and *docker-compose*.\nTo install *Docker*, visit its [official page](https://docs.docker.com/engine/install/).\nAnd to install *docker-compose*, follow [these steps](https://docs.docker.com/compose/install/).\nTo help manage the project and execute commands in an quicker way,\nthere is a set of [Make](https://www.gnu.org/software/make/) targets already configured.\n\nSet up and run the project just by running one of the following sets of commands:\n\n```sh\nmake start\n```\n\nor\n\n```sh\ndocker-compose build --pull --no-cache\ndocker-compose up --detach\n```\n\n## Basic usage\n\nTo run the manager, just execute one of the following commands:\n\n```sh\nmake parking-lot-manager\n```\n\nor\n\n```sh\ndocker-compose exec app bin/console parking-lot:manager\n```\n\n## Demo\n\n![Demo](./doc/demo.gif)\n\n## Useful tips\n\n#### List of available commands using *Make*:\n\n```text\n --- Makefile ---            \nhelp                           Outputs this help screen\n --- Docker ---              \nbuild                          Builds container(s)\nup                             Start container(s)\nup-d                           Start container(s) in detached mode (no logs)\nstart                          Set up, build and start the containers\nstop                           Stop container(s)\ndown                           Stop and remove container(s)\nlogs                           Show logs\nlogs-f                         Show live logs\nps                             Show containers' statuses\nsh                             Connect to a container via SH\nphp-sh                         Connect to the PHP FPM container via SH\n --- Code Quality ---        \nphpcs                          Run PHP Code Sniffer\nphpcs-fix                      Run PHP Code Sniffer (fix)\nphpstan                        Run PHPStan\nlint                           Run PHP Code Sniffer and PHPStan\ntest                           Run tests, pass the parameter \"args=\" to run the command with arguments or options\ntest-pretty                    Run tests in a pretty way, pass the parameter \"args=\" to run the command with arguments or options\ntest-cov                       Run tests and generate coverage report\n --- Composer ---            \ncomposer                       Run composer, pass the parameter \"c=\" to run a given command, example: make composer c='req symfony/orm-pack'\n --- App ---                 \nconsole                        List all application commands or pass the parameter \"c=\" to run a given command, example: make command c=about\nparking-lot-manager            Run the Parking Lot Manager\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fedumarques%2Fparking-lot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fedumarques%2Fparking-lot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fedumarques%2Fparking-lot/lists"}